2020-03-11 10:43:32 -07:00
|
|
|
<ResourceDictionary
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<Style x:Key="OobeSubtitleStyle" TargetType="TextBlock">
|
|
|
|
|
<Setter Property="Margin" Value="0,16,0,0" />
|
|
|
|
|
<Setter Property="Foreground" Value="{ThemeResource DefaultTextForegroundThemeBrush}" />
|
|
|
|
|
<Setter Property="AutomationProperties.HeadingLevel" Value="Level3" />
|
|
|
|
|
<Setter Property="FontFamily" Value="XamlAutoFontFamily" />
|
|
|
|
|
<Setter Property="FontSize" Value="{StaticResource BodyTextBlockFontSize}" />
|
2021-03-02 20:56:37 +03:00
|
|
|
<Setter Property="FontWeight" Value="SemiBold" />
|
2020-03-11 10:43:32 -07:00
|
|
|
<Setter Property="TextTrimming" Value="CharacterEllipsis" />
|
|
|
|
|
<Setter Property="TextWrapping" Value="Wrap" />
|
2021-08-23 19:48:52 +02:00
|
|
|
<Setter Property="LineStackingStrategy" Value="MaxHeight" />
|
|
|
|
|
<Setter Property="TextLineBounds" Value="Full" />
|
2020-03-11 10:43:32 -07:00
|
|
|
</Style>
|
|
|
|
|
|
2021-08-23 19:48:52 +02:00
|
|
|
<x:Double x:Key="SecondaryTextFontSize">12</x:Double>
|
|
|
|
|
<Style x:Key="SecondaryTextStyle" TargetType="TextBlock">
|
|
|
|
|
<Setter Property="FontSize" Value="{StaticResource SecondaryTextFontSize}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="{ThemeResource TextFillColorSecondaryBrush}"/>
|
2021-05-21 16:03:18 +03:00
|
|
|
</Style>
|
2020-07-24 21:02:56 +02:00
|
|
|
</ResourceDictionary>
|