Styles1.axaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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="TextBlock.but">
  6. <Setter Property="Foreground" Value="#FFFFFF"/>
  7. <Setter Property="FontSize" Value="16" />
  8. </Style>
  9. <Style Selector="TextBlock">
  10. <Setter Property="Foreground" Value="#008080"/>
  11. <Setter Property="FontSize" Value="16" />
  12. </Style>
  13. <Style Selector="Button">
  14. <Setter Property="Background" Value="#008080"/>
  15. <Setter Property="Foreground" Value="#FFFFFF"/>
  16. <Setter Property="BorderBrush" Value="#00CED1"/>
  17. <Setter Property="BorderThickness" Value="2"/>
  18. <Setter Property="FontSize" Value="16"/>
  19. <Setter Property="CornerRadius" Value="5"/>
  20. </Style>
  21. <Style Selector="Button:hover">
  22. <Setter Property="Background" Value="#00CED1"/>
  23. </Style>
  24. <Style Selector="TextBox">
  25. <Setter Property="Background" Value="#E0FFFF"/>
  26. <Setter Property="Foreground" Value="#008080"/>
  27. <Setter Property="BorderBrush" Value="#00CED1"/>
  28. <Setter Property="BorderThickness" Value="2"/>
  29. <Setter Property="FontSize" Value="14"/>
  30. </Style>
  31. <Style Selector="CheckBox">
  32. <Setter Property="Foreground" Value="#008080"/>
  33. </Style>
  34. <Style Selector="RadioButton">
  35. <Setter Property="Foreground" Value="#008080"/>
  36. </Style>
  37. <Style Selector="ListBox">
  38. <Setter Property="Background" Value="#F0FFFF"/>
  39. <Setter Property="BorderBrush" Value="#00CED1"/>
  40. <Setter Property="BorderThickness" Value="2"/>
  41. </Style>
  42. <Style Selector="Border">
  43. <Setter Property="BorderBrush" Value="#00CED1"/>
  44. <Setter Property="BorderThickness" Value="2"/>
  45. <Setter Property="CornerRadius" Value="5"/>
  46. </Style>
  47. <Style Selector="RadioButton">
  48. <Setter Property="Foreground" Value="#008080"/>
  49. <Setter Property="FontSize" Value="16"/>
  50. <Setter Property="Margin" Value="0,5,0,5"/>
  51. </Style>
  52. <Style Selector="RadioButton:hover">
  53. <Setter Property="Foreground" Value="#00CED1"/>
  54. </Style>
  55. <Style Selector="RadioButton:checked">
  56. <Setter Property="Foreground" Value="#00CED1"/>
  57. </Style>
  58. </Styles>