2023-10-24 12:25:55 +02:00
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
2020-03-11 10:43:32 -07:00
|
|
|
|
2023-10-24 12:25:55 +02:00
|
|
|
<Style x:Key="OobeSubtitleStyle" TargetType="TextBlock">
|
2021-08-23 19:48:52 +02:00
|
|
|
<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>
|
2023-01-31 00:00:11 +01:00
|
|
|
<Style x:Key="SecondaryTextStyle" TargetType="TextBlock">
|
2022-11-23 19:57:09 +01:00
|
|
|
<Setter Property="FontSize" Value="{StaticResource SecondaryTextFontSize}" />
|
|
|
|
|
<Setter Property="Foreground" Value="{ThemeResource TextFillColorSecondaryBrush}" />
|
2022-10-13 03:41:21 -04:00
|
|
|
</Style>
|
2023-01-31 00:00:11 +01:00
|
|
|
|
|
|
|
|
<x:Double x:Key="HeaderTextFontSize">12</x:Double>
|
|
|
|
|
<Style x:Key="HeaderTextStyle" TargetType="TextBlock">
|
2023-10-24 12:25:55 +02:00
|
|
|
<Setter Property="FontSize" Value="{StaticResource HeaderTextFontSize}" />
|
|
|
|
|
<Setter Property="Foreground" Value="{ThemeResource TextFillColorSecondaryBrush}" />
|
2023-01-31 00:00:11 +01:00
|
|
|
<Setter Property="FontWeight" Value="Bold" />
|
|
|
|
|
</Style>
|
2020-07-24 21:02:56 +02:00
|
|
|
</ResourceDictionary>
|