2025-10-03 22:12:27 +02:00
|
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
|
|
|
using Microsoft.UI.Xaml;
|
2025-09-29 11:16:14 +02:00
|
|
|
using Microsoft.UI.Xaml.Controls;
|
2025-10-03 22:12:27 +02:00
|
|
|
using Wino.Messaging.UI;
|
2025-09-29 11:16:14 +02:00
|
|
|
|
|
|
|
|
namespace Wino.Core.WinUI.Interfaces;
|
|
|
|
|
|
2025-10-03 22:12:27 +02:00
|
|
|
public interface IWinoShellWindow : IRecipient<TitleBarShellContentUpdated>
|
2025-09-29 11:16:14 +02:00
|
|
|
{
|
|
|
|
|
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
|
|
|
}
|