Styles.axaml 1020 B

123456789101112131415161718192021222324252627282930
  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. <!-- Add Styles Here -->
  9. <Style Selector="Button">
  10. <Setter Property="Background" Value="DarkGreen"/>
  11. <Setter Property="Foreground" Value="WhiteSmoke"/>
  12. <Setter Property="Margin" Value="0,10,0,0"/>
  13. <Setter Property="HorizontalAlignment" Value="Center"/>
  14. </Style>
  15. <Style Selector="TextBlock">
  16. <Setter Property="FontSize" Value="16"/>
  17. </Style>
  18. <Style Selector="Border.trash">
  19. <Setter Property="Background" Value="White"/>
  20. <Setter Property="BorderBrush" Value="LightGray"/>
  21. <Setter Property="BorderThickness" Value="2"/>
  22. <Setter Property="CornerRadius" Value="16"/>
  23. <Setter Property="Padding" Value="30"/>
  24. </Style>
  25. <Style Selector="Label">
  26. <Setter Property="FontSize" Value="16"/>
  27. <Setter Property="FontWeight" Value="Bold"/>
  28. </Style>
  29. </Styles>