App.xaml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <Application xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.App">
  4. <Application.Styles>
  5. <StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml"/>
  6. <StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml"/>
  7. <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Default.xaml"/>
  8. <Style Selector="TextBlock.h1">
  9. <Setter Property="FontSize" Value="{DynamicResource FontSizeLarge}"/>
  10. <Setter Property="FontWeight" Value="Medium"/>
  11. </Style>
  12. <Style Selector="TextBlock.h2">
  13. <Setter Property="FontSize" Value="{DynamicResource FontSizeNormal}"/>
  14. </Style>
  15. <Style Selector="TextBlock.h3">
  16. <Setter Property="FontSize" Value="{DynamicResource FontSizeSmall}"/>
  17. </Style>
  18. <StyleInclude Source="/SideBar.xaml"/>
  19. </Application.Styles>
  20. <NativeMenu.Menu>
  21. <NativeMenu>
  22. <NativeMenuItem Header="Open" Clicked="OnOpenClicked"/>
  23. <NativeMenuItem Header="Recent">
  24. <NativeMenuItem.Menu>
  25. <NativeMenu/>
  26. </NativeMenuItem.Menu>
  27. </NativeMenuItem>
  28. <NativeMenuItem Header="Quit Avalonia" Gesture="CMD+Q"/>
  29. </NativeMenu>
  30. </NativeMenu.Menu>
  31. </Application>