2020-03-12 01:43:32 +08:00
|
|
|
<ResourceDictionary
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
|
|
|
|
<!--Common texts-->
|
|
|
|
<Style x:Key="PageTitleStyle" TargetType="TextBlock">
|
|
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
|
|
<Setter Property="FontWeight" Value="SemiLight" />
|
|
|
|
<Setter Property="FontSize" Value="{StaticResource LargeFontSize}" />
|
|
|
|
<Setter Property="TextTrimming" Value="CharacterEllipsis" />
|
|
|
|
<Setter Property="TextWrapping" Value="NoWrap" />
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
<Style x:Key="BodyTextStyle" TargetType="TextBlock">
|
|
|
|
<Setter Property="FontWeight" Value="Normal" />
|
|
|
|
<Setter Property="FontSize" Value="{StaticResource MediumFontSize}" />
|
|
|
|
<Setter Property="TextTrimming" Value="CharacterEllipsis" />
|
|
|
|
<Setter Property="TextWrapping" Value="Wrap" />
|
|
|
|
</Style>
|
|
|
|
|
2020-03-27 23:58:53 +08:00
|
|
|
|
|
|
|
<Style x:Key="SettingsGroupTitleStyle" TargetType="TextBlock" BasedOn="{StaticResource SubtitleTextBlockStyle}">
|
2020-07-25 03:02:56 +08:00
|
|
|
<Setter Property="Margin" Value="0,34,0,4" />
|
|
|
|
<Setter Property="FontWeight" Value="SemiBold"/>
|
2020-10-24 04:35:57 +08:00
|
|
|
<Setter Property="AutomationProperties.HeadingLevel" Value="Level2" />
|
2020-03-27 23:58:53 +08:00
|
|
|
</Style>
|
2020-09-12 08:10:51 +08:00
|
|
|
|
|
|
|
<Style x:Key="SettingsGroupTitleStyleAsHeader" TargetType="TextBlock" BasedOn="{StaticResource SettingsGroupTitleStyle}">
|
|
|
|
<Setter Property="Margin" Value="0,0,0,4" />
|
|
|
|
</Style>
|
2020-07-25 03:02:56 +08:00
|
|
|
</ResourceDictionary>
|