add api culture

This commit is contained in:
2024-05-17 20:43:16 +02:00
parent 8e61053f44
commit 79137e7bc1
16 changed files with 138 additions and 74 deletions

View File

@@ -0,0 +1,23 @@
using OwnChar.App.Desktop.Api;
using System;
using System.Windows.Forms;
namespace OwnChar.App.Desktop.UI.Windows;
public partial class MainWindow
{
public class MainWindowApi(MainWindow mainWindow) : IMainWindowApi
{
public MainWindow MainWindow { get; } = mainWindow;
public void CloseTab(Control content)
{
throw new NotImplementedException();
}
public void OpenTab(Control content)
{
throw new NotImplementedException();
}
}
}