csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="using:ControlCatalog.ViewModels"
|
|
x:DataType="vm:ApplicationViewModel"
|
|
x:CompileBindings="True"
|
|
x:Class="ControlCatalog.App">
|
|
<Application.Styles>
|
|
<Style Selector="TextBlock.h1">
|
|
<Setter Property="FontSize" Value="16" />
|
|
<Setter Property="FontWeight" Value="Medium" />
|
|
</Style>
|
|
<Style Selector="TextBlock.h2">
|
|
<Setter Property="FontSize" Value="14" />
|
|
</Style>
|
|
<Style Selector="TextBlock.h3">
|
|
<Setter Property="FontSize" Value="12" />
|
|
</Style>
|
|
<Style Selector="Label.h1">
|
|
<Setter Property="FontSize" Value="16" />
|
|
<Setter Property="FontWeight" Value="Medium" />
|
|
</Style>
|
|
<Style Selector="Label.h2">
|
|
<Setter Property="FontSize" Value="14" />
|
|
</Style>
|
|
<Style Selector="Label.h3">
|
|
<Setter Property="FontSize" Value="12" />
|
|
</Style>
|
|
<StyleInclude Source="/SideBar.xaml"/>
|
|
</Application.Styles>
|
|
<TrayIcon.TrayIcons>
|
|
<TrayIcons>
|
|
<TrayIcon Icon="/Assets/test_icon.ico" ToolTipText="Avalonia Tray Icon ToolTip">
|
|
<NativeMenu.Menu>
|
|
<NativeMenu>
|
|
<NativeMenuItem Header="Exit" Command="{Binding ExitCommand}" />
|
|
</NativeMenu>
|
|
</NativeMenu.Menu>
|
|
</TrayIcon>
|
|
</TrayIcons>
|
|
</TrayIcon.TrayIcons>
|
|
</Application>
|
|
|