311b3c77c8
* Double app entry. * New icon for sys tray
15 lines
436 B
C#
15 lines
436 B
C#
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(string? launchArguments, string? tileId = null, string? appId = null);
|
|
TitleBar GetTitleBar();
|
|
Frame GetMainFrame();
|
|
FrameworkElement GetRootContent();
|
|
}
|