2025-11-15 14:52:01 +01:00
|
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
|
|
|
using Microsoft.UI.Xaml;
|
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
|
|
|
|
|
|
namespace Wino.Mail.WinUI.Interfaces;
|
|
|
|
|
|
2026-03-25 09:45:49 +01:00
|
|
|
public interface IWinoShellWindow
|
2025-11-15 14:52:01 +01:00
|
|
|
{
|
2026-02-22 15:13:39 +01:00
|
|
|
void HandleAppActivation(string? launchArguments, string? tileId = null, string? appId = null);
|
2025-11-15 14:52:01 +01:00
|
|
|
TitleBar GetTitleBar();
|
|
|
|
|
Frame GetMainFrame();
|
|
|
|
|
FrameworkElement GetRootContent();
|
|
|
|
|
}
|