Files
Wino-Mail/Wino.Core.WinUI/Interfaces/IWinoShellWindow.cs
T

13 lines
294 B
C#
Raw Normal View History

2025-09-29 11:16:14 +02:00
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
namespace Wino.Core.WinUI.Interfaces;
public interface IWinoShellWindow
{
void HandleAppActivation(LaunchActivatedEventArgs args);
2025-09-29 19:09:48 +02:00
TitleBar GetTitleBar();
2025-09-29 11:16:14 +02:00
Frame GetMainFrame();
2025-09-29 19:09:48 +02:00
FrameworkElement GetRootContent();
2025-09-29 11:16:14 +02:00
}