Files
App/OwnChar.App.Desktop/Api/IMainWindowApi.cs
2024-05-20 18:50:10 +02:00

15 lines
345 B
C#

using OwnChar.Manager;
using System.Windows.Forms;
namespace OwnChar.App.Desktop.Api
{
public interface IMainWindowApi
{
OwnCharManager? Manager { get; }
void OpenTab(Control content, string title);
void CloseTab(Control content);
bool IsTabOpen(Control content);
bool IsTabOpen<T>();
}
}