Files
Wino-Mail/Wino.Core.WinUI/Interfaces/IWinoShellWindow.cs
T
2025-09-29 19:09:48 +02:00

13 lines
294 B
C#

using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
namespace Wino.Core.WinUI.Interfaces;
public interface IWinoShellWindow
{
void HandleAppActivation(LaunchActivatedEventArgs args);
TitleBar GetTitleBar();
Frame GetMainFrame();
FrameworkElement GetRootContent();
}