|
@@ -0,0 +1,33 @@
|
|
|
|
|
+<Styles xmlns="https://github.com/avaloniaui"
|
|
|
|
|
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
|
+ <Design.PreviewWith>
|
|
|
|
|
+ <Border Padding="20">
|
|
|
|
|
+ <!-- Add Controls for Previewer Here -->
|
|
|
|
|
+ </Border>
|
|
|
|
|
+ </Design.PreviewWith>
|
|
|
|
|
+
|
|
|
|
|
+ <Style Selector="TextBlock.ExtraSmall">
|
|
|
|
|
+ <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeExtraSmall}" />
|
|
|
|
|
+ </Style>
|
|
|
|
|
+
|
|
|
|
|
+ <Style Selector="TextBlock.Small">
|
|
|
|
|
+ <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeSmall}" />
|
|
|
|
|
+ </Style>
|
|
|
|
|
+
|
|
|
|
|
+ <Style Selector="TextBlock.Large">
|
|
|
|
|
+ <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeLarge}" />
|
|
|
|
|
+ </Style>
|
|
|
|
|
+
|
|
|
|
|
+ <Style Selector="TextBlock.ExtraLarge">
|
|
|
|
|
+ <Setter Property="FontSize" Value="{DynamicResource PrsFontSizeExtraLarge}" />
|
|
|
|
|
+ </Style>
|
|
|
|
|
+
|
|
|
|
|
+ <Style Selector="TextBlock.Bold">
|
|
|
|
|
+ <Setter Property="FontWeight" Value="{DynamicResource PrsFontWeightBold}" />
|
|
|
|
|
+ </Style>
|
|
|
|
|
+
|
|
|
|
|
+ <Style Selector="TextBlock.Italic">
|
|
|
|
|
+ <Setter Property="FontStyle" Value="{DynamicResource PrsFontStylItalic}" />
|
|
|
|
|
+ </Style>
|
|
|
|
|
+
|
|
|
|
|
+</Styles>
|