StyleCalendar.axaml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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="Button">
  10. <Setter Property="Background" Value="DarkGreen"/>
  11. <Setter Property="Foreground" Value="WhiteSmoke"/>
  12. </Style>
  13. <Style Selector="TextBlock">
  14. <Setter Property="FontSize" Value="16"/>
  15. <Setter Property="Foreground" Value="DarkGreen"/>
  16. <Setter Property="FontWeight" Value="Bold"/>
  17. </Style>
  18. <Style Selector="TextBlock.Error">
  19. <Setter Property="FontSize" Value="16"/>
  20. <Setter Property="Foreground" Value="Red"/>
  21. <Setter Property="FontWeight" Value="Bold"/>
  22. </Style>
  23. <Style Selector="Border">
  24. <Setter Property="Background" Value="White"/>
  25. <Setter Property="BorderBrush" Value="LightGray"/>
  26. <Setter Property="BorderThickness" Value="2"/>
  27. <Setter Property="CornerRadius" Value="16"/>
  28. </Style>
  29. <Style Selector="Label">
  30. <Setter Property="FontSize" Value="16"/>
  31. <Setter Property="Foreground" Value="DarkGreen"/>
  32. <Setter Property="FontWeight" Value="Bold"/>
  33. </Style>
  34. </Styles>