Styles1.axaml 633 B

123456789101112131415161718192021
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Design.PreviewWith>
  4. <Border Padding="20">
  5. <!-- Add Controls for Previewer Here -->
  6. </Border>
  7. </Design.PreviewWith>
  8. <Style Selector="Button">
  9. <Setter Property="Background" Value="#F64C72"/>
  10. <Setter Property="Foreground" Value="#FFFF"/>
  11. <!--<Setter Property="FontSize" Value="20"/>-->
  12. </Style>
  13. <Style Selector="TextBlock">
  14. <Setter Property="Foreground" Value="#F64C72"/>
  15. <!--<Setter Property="Foreground" Value="#4C2F27"/>-->
  16. <Setter Property="FontSize" Value="20"/>
  17. </Style>
  18. </Styles>