Styles1.axaml 980 B

12345678910111213141516171819202122232425262728293031323334
  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="TextBlock">
  10. <Setter Property="Foreground" Value="#2F4F4F" />
  11. </Style>
  12. <Style Selector="TextBox">
  13. <Setter Property="Background" Value="#ADD8E6" />
  14. <Setter Property="Foreground" Value="#000000" />
  15. </Style>
  16. <Style Selector="Button">
  17. <Setter Property="Background" Value="#87CEEB" />
  18. <Setter Property="Foreground" Value="#000000" />
  19. <Setter Property="Padding" Value="10" />
  20. <Setter Property="BorderThickness" Value="2" />
  21. <Setter Property="BorderBrush" Value="#C7C5B8" />
  22. <Setter Property="FontSize" Value="16" />
  23. <Setter Property="Cursor" Value="Hand" />
  24. <Setter Property="CornerRadius" Value="10" />
  25. <Setter Property="Margin" Value="5" />
  26. </Style>
  27. </Styles>