mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Settings - Changed where panels start scrolling Home - Clip cards to bounds Sidebar - Added category creation/renaming Debugger - Fixed existing window focus Tray icon - Implemented all functionality
12 lines
811 B
XML
12 lines
811 B
XML
<ResourceDictionary xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<NativeMenu x:Key="TrayIconMenu">
|
|
<NativeMenuItem Header="Home" Command="{Binding OpenScreen}" CommandParameter="Home" />
|
|
<NativeMenuItem Header="Workshop" Command="{Binding OpenScreen}" CommandParameter="Workshop" />
|
|
<NativeMenuItem Header="Surface Editor" Command="{Binding OpenScreen}" CommandParameter="Surface Editor" />
|
|
<NativeMenuItem Header="Settings" Command="{Binding OpenScreen}" CommandParameter="Settings" />
|
|
<NativeMenuItemSeparator />
|
|
<NativeMenuItem Header="Debugger" Command="{Binding OpenDebugger}" />
|
|
<NativeMenuItem Header="Exit" Command="{Binding Exit}" />
|
|
</NativeMenu>
|
|
</ResourceDictionary> |