2025-07-31 20:12:01 +08:00
|
|
|
<ResourceDictionary
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:controls="clr-namespace:AntDesign.WPF.Controls"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
2025-07-11 09:20:23 +08:00
|
|
|
|
|
|
|
|
<Style TargetType="{x:Type controls:Heading}">
|
|
|
|
|
<Setter Property="FontSize" Value="16" />
|
|
|
|
|
<Setter Property="LineHeight" Value="24" />
|
|
|
|
|
<Setter Property="FontWeight" Value="Medium" />
|
|
|
|
|
<Setter Property="LineStackingStrategy" Value="BlockLineHeight" />
|
|
|
|
|
<Setter Property="FontFamily" Value="{DynamicResource FontFamily}" />
|
|
|
|
|
<Setter Property="Foreground" Value="{DynamicResource HeadingBrush}" />
|
|
|
|
|
<Style.Triggers>
|
2025-07-31 20:12:01 +08:00
|
|
|
<!-- H1 -->
|
2025-07-11 09:20:23 +08:00
|
|
|
<Trigger Property="Size" Value="ExtraLarge">
|
|
|
|
|
<Setter Property="FontSize" Value="30" />
|
|
|
|
|
<Setter Property="LineHeight" Value="38" />
|
|
|
|
|
</Trigger>
|
2025-07-31 20:12:01 +08:00
|
|
|
<!-- H2 -->
|
2025-07-11 09:20:23 +08:00
|
|
|
<Trigger Property="Size" Value="Large">
|
|
|
|
|
<Setter Property="FontSize" Value="24" />
|
|
|
|
|
<Setter Property="LineHeight" Value="32" />
|
|
|
|
|
</Trigger>
|
2025-07-31 20:12:01 +08:00
|
|
|
<!-- H3 -->
|
2025-07-11 09:20:23 +08:00
|
|
|
<Trigger Property="Size" Value="Medium">
|
|
|
|
|
<Setter Property="FontSize" Value="18" />
|
|
|
|
|
<Setter Property="LineHeight" Value="26" />
|
|
|
|
|
</Trigger>
|
2025-07-31 20:12:01 +08:00
|
|
|
<!-- H5 -->
|
2025-07-11 09:20:23 +08:00
|
|
|
<Trigger Property="Size" Value="Small">
|
|
|
|
|
<Setter Property="FontSize" Value="14" />
|
|
|
|
|
<Setter Property="LineHeight" Value="22" />
|
|
|
|
|
</Trigger>
|
2025-07-31 20:12:01 +08:00
|
|
|
<!-- H6 -->
|
2025-07-11 09:20:23 +08:00
|
|
|
<Trigger Property="Size" Value="Tiny">
|
|
|
|
|
<Setter Property="FontSize" Value="12" />
|
|
|
|
|
<Setter Property="LineHeight" Value="20" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
2025-07-31 20:12:01 +08:00
|
|
|
|
2025-07-11 09:20:23 +08:00
|
|
|
</ResourceDictionary>
|