App.xaml 612 B

1234567891011121314151617
  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. <Style Selector="TextBlock.h1">
  6. <Setter Property="FontSize" Value="16" />
  7. <Setter Property="FontWeight" Value="Medium" />
  8. </Style>
  9. <Style Selector="TextBlock.h2">
  10. <Setter Property="FontSize" Value="14" />
  11. </Style>
  12. <Style Selector="TextBlock.h3">
  13. <Setter Property="FontSize" Value="12" />
  14. </Style>
  15. <StyleInclude Source="/SideBar.xaml"/>
  16. </Application.Styles>
  17. </Application>