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>
|
|
|
|
|
{
|
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();
|
|
|
|
|
}
|