Label.axaml 1008 B

123456789101112131415161718192021222324252627282930
  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. <Style Selector="Label">
  9. <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeNormal}" />
  10. <Setter Property="VerticalAlignment" Value="Center" />
  11. </Style>
  12. <Style Selector="Label.ExtraSmall">
  13. <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeExtraSmall}" />
  14. </Style>
  15. <Style Selector="Label.Small">
  16. <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeSmall}" />
  17. </Style>
  18. <Style Selector="Label.Large">
  19. <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeLarge}" />
  20. </Style>
  21. <Style Selector="Label.ExtraLarge">
  22. <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeExtraLarge}" />
  23. </Style>
  24. </Styles>