Styles1.axaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Design.PreviewWith>
  4. </Design.PreviewWith>
  5. <Style Selector="UserControl">
  6. <Setter Property="Background" Value="#EDE7F6"/>
  7. <Setter Property="Padding" Value="20"/>
  8. </Style>
  9. <Style Selector="TextBlock">
  10. <Setter Property="Foreground" Value="#9272ba"/>
  11. <Setter Property="FontSize" Value="16"/>
  12. </Style>
  13. <Style Selector="ComboBox">
  14. <Setter Property="Background" Value="#D1C4E9"/>
  15. <Setter Property="Foreground" Value="#4A148C"/>
  16. <Setter Property="BorderBrush" Value="#7B1FA2"/>
  17. <Setter Property="BorderThickness" Value="2"/>
  18. <Setter Property="Padding" Value="5"/>
  19. </Style>
  20. <Style Selector="NumericUpDown">
  21. <Setter Property="Background" Value="#D1C4E9"/>
  22. <Setter Property="Foreground" Value="#4A148C"/>
  23. <Setter Property="BorderBrush" Value="#7B1FA2"/>
  24. <Setter Property="BorderThickness" Value="2"/>
  25. <Setter Property="Padding" Value="5"/>
  26. </Style>
  27. <Style Selector="Button">
  28. <Setter Property="Background" Value="#7B1FA2"/>
  29. <Setter Property="Foreground" Value="#FFFFFF"/>
  30. <Setter Property="Padding" Value="10"/>
  31. <Setter Property="BorderBrush" Value="#4A148C"/>
  32. <Setter Property="BorderThickness" Value="2"/>
  33. <Setter Property="FontSize" Value="16"/>
  34. <Setter Property="Cursor" Value="Hand"/>
  35. </Style>
  36. <Style Selector="Button:hover">
  37. <Setter Property="Background" Value="#9C27B0"/>
  38. </Style>
  39. </Styles>