App.axaml 1018 B

1234567891011121314151617181920212223242526
  1. <Application xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="AvaloniaApplicationTest.App"
  4. xmlns:local="using:AvaloniaApplicationTest"
  5. RequestedThemeVariant="Default">
  6. <!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
  7. <Application.DataTemplates>
  8. <local:ViewLocator/>
  9. </Application.DataTemplates>
  10. <Application.Styles>
  11. <FluentTheme />
  12. <Style Selector="TextBlock">
  13. <Setter Property="FontSize" Value="16"/>
  14. <Setter Property="Foreground" Value="#445c93"/>
  15. <Setter Property="FontFamily" Value="Comic Sans MS"/>
  16. </Style>
  17. <Style Selector="Button">
  18. <Setter Property="FontSize" Value="16"/>
  19. <Setter Property="Foreground" Value="#445c93"/>
  20. <Setter Property="FontFamily" Value="Comic Sans MS"/>
  21. <Setter Property="Background" Value="#fac716"/>
  22. </Style>
  23. </Application.Styles>
  24. </Application>