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