Styles.axaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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="StackPanel">
  10. <Setter Property="Margin" Value="10"/>
  11. </Style>
  12. <Style Selector="DatePicker">
  13. <Setter Property="BorderBrush" Value="#FF0000"/>
  14. <Setter Property="Height" Value="33"/>
  15. <Setter Property="Width" Value="380"/>
  16. <Setter Property="FontSize" Value="17"/>
  17. </Style>
  18. <Style Selector="TextBlock">
  19. <Setter Property="Margin" Value="0 0 5 0"/>
  20. <Setter Property="FontSize" Value="16"/>
  21. </Style>
  22. <Style Selector="TextBlock.title">
  23. <Setter Property="FontSize" Value="22"/>
  24. <Setter Property="Foreground" Value="Black"/>
  25. </Style>
  26. <Style Selector="TextBlock.subtitle">
  27. <Setter Property="Margin" Value="30 0 5 0"/>
  28. </Style>
  29. <Style Selector="TextBlock.const">
  30. <Setter Property="FontSize" Value="18"/>
  31. <Setter Property="Foreground" Value="#FF0000"/>
  32. </Style>
  33. <Style Selector="Button">
  34. <Setter Property="FontSize" Value="15"/>
  35. <Setter Property="Background" Value="#ea0909"/>
  36. <Setter Property="Foreground" Value="#FFFFFF"/>
  37. </Style>
  38. <Style Selector="StackPanel.horoscopeSP">
  39. <Setter Property="Orientation" Value="Horizontal"/>
  40. <Setter Property="HorizontalAlignment" Value="Center"/>
  41. </Style>
  42. <Style Selector="Button.horoscopeB">
  43. <Setter Property="Width" Value="260"/>
  44. <Setter Property="Margin" Value="0 0 10 0"/>
  45. </Style>
  46. <Style Selector="TextBlock.horoscopeTB">
  47. <Setter Property="HorizontalAlignment" Value="Center"/>
  48. <Setter Property="FontSize" Value="15"/>
  49. </Style>
  50. <Style Selector="TextBlock.errorTB">
  51. <Setter Property="FontSize" Value="18"/>
  52. </Style>
  53. </Styles>