19 lines
863 B
XML
19 lines
863 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style TargetType="{x:Type TextBlock}">
|
|
|
|
<!--<Setter Property="Foreground" Value="{DynamicResource TextFillColorPrimaryBrush}"/>-->
|
|
|
|
<!-- The Display option causes a large aliasing effect -->
|
|
<!--<Setter Property="TextOptions.TextFormattingMode" Value="Ideal" />-->
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Margin" Value="0" />
|
|
<Setter Property="Padding" Value="0" />
|
|
<Setter Property="Focusable" Value="False" />
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|