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

15 lines
397 B
C#
Raw Normal View History

2025-11-15 14:52:01 +01:00
using CommunityToolkit.Mvvm.Messaging;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Wino.Messaging.UI;
namespace Wino.Mail.WinUI.Interfaces;
public interface IWinoShellWindow : IRecipient<TitleBarShellContentUpdated>
{
void HandleAppActivation(LaunchActivatedEventArgs args);
TitleBar GetTitleBar();
Frame GetMainFrame();
FrameworkElement GetRootContent();
}