11 lines
701 B
XML
11 lines
701 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style x:Key="Ant.Label" TargetType="{x:Type Label}">
|
|
<Setter Property="FontFamily" Value="{DynamicResource FontFamily}" />
|
|
<Setter Property="FontSize" Value="{DynamicResource FontSizeBase}" />
|
|
<Setter Property="Foreground" Value="{DynamicResource AntDesign.Brush.TextPrimary}" />
|
|
<Setter Property="TextBlock.TextAlignment" Value="Left" />
|
|
<Setter Property="TextBlock.TextWrapping" Value="Wrap" />
|
|
</Style>
|
|
<Style BasedOn="{StaticResource Ant.Label}" TargetType="{x:Type Label}" />
|
|
|
|
</ResourceDictionary> |