Styles1.axaml 725 B

1234567891011121314151617181920212223
  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="LightSteelBlue"/>
  10. <Setter Property="CornerRadius" Value="15"/>
  11. <Setter Property="BorderBrush" Value="DarkGray"/>
  12. <Setter Property="BorderThickness" Value="2"/>
  13. <Setter Property="Padding" Value="10"/>
  14. <Setter Property="Width" Value="300"/>
  15. <Setter Property="HorizontalContentAlignment" Value="Center"/>
  16. <!-- Add Styles Here -->
  17. <Setter Property="Foreground" Value="White"/>
  18. </Style>
  19. </Styles>