43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<ResourceDictionary
|
|
x:Class="Wino.Server.WinUI.TrayIconResources"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:domain="using:Wino.Core.Domain"
|
|
xmlns:tb="using:H.NotifyIcon"
|
|
xmlns:local="using:Wino.Server.WinUI">
|
|
|
|
<XamlUICommand
|
|
x:Key="LaunchCommand"
|
|
Label="Launch"
|
|
Description="Activates Wino Mail window.">
|
|
<XamlUICommand.IconSource>
|
|
<SymbolIconSource Symbol="Accept" />
|
|
</XamlUICommand.IconSource>
|
|
</XamlUICommand>
|
|
|
|
<XamlUICommand
|
|
x:Key="TerminateCommand"
|
|
Label="Quit"
|
|
Description="Close Wino Mail completely.">
|
|
<XamlUICommand.IconSource>
|
|
<SymbolIconSource Symbol="ClosePane" />
|
|
</XamlUICommand.IconSource>
|
|
</XamlUICommand>
|
|
|
|
<tb:TaskbarIcon
|
|
x:Key="TrayIcon"
|
|
Visibility="Visible"
|
|
ToolTipText="Wino Mail"
|
|
ContextMenuMode="SecondWindow"
|
|
LeftClickCommand="{StaticResource LaunchCommand}"
|
|
NoLeftClickDelay="True"
|
|
IconSource="\Images\Wino_Icon.ico">
|
|
<tb:TaskbarIcon.ContextFlyout>
|
|
<MenuFlyout>
|
|
<MenuFlyoutItem Command="{StaticResource LaunchCommand}" />
|
|
<MenuFlyoutItem Command="{StaticResource TerminateCommand}" />
|
|
</MenuFlyout>
|
|
</tb:TaskbarIcon.ContextFlyout>
|
|
</tb:TaskbarIcon>
|
|
</ResourceDictionary>
|