Styles1.axaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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.but">
  9. <Setter Property="Background" Value="#84a5c8"/>
  10. <Setter Property="Foreground" Value="White"/>
  11. <Setter Property="BorderBrush" Value="#304c65"/>
  12. <Setter Property="CornerRadius" Value="5"/>
  13. <Setter Property="FontSize" Value="14"/>
  14. <Style Selector="^:pointerover /template/ ContentPresenter#PART_ContentPresenter">
  15. <Setter Property="Background" Value="#4c393d" />
  16. <Setter Property="BorderBrush" Value="#aebed4" />
  17. <Setter Property="Foreground" Value="White" />
  18. </Style>
  19. <Style Selector="^:pressed">
  20. <Setter Property="RenderTransform" Value="scale(1.5)" />
  21. </Style>
  22. </Style>
  23. <Style Selector="DatePicker.Text">
  24. <Setter Property="BorderBrush" Value="#aebed4" />
  25. </Style>
  26. <Style Selector="RadioButton.RB">
  27. <Setter Property="Foreground" Value="#84a5c8" />
  28. <Style Selector="^:pointerover /template/ ContentPresenter#PART_ContentPresenter">
  29. <Setter Property="Background" Value="#4c393d" />
  30. <Setter Property="BorderBrush" Value="#aebed4" />
  31. <Setter Property="Foreground" Value="White" />
  32. </Style>
  33. </Style>
  34. </Styles>