当基本标签样式设置为某个特定字体系列时,我需要在某些标签(例如)中将字体样式设置(重置)为默认值。 即:
<Style TargetType="Label">
<Setter Property="FontFamily" Value="{StaticResource ThinFontFamily}" />
</Style>
<Style TargetType="Label" x:Key="MyCustomStyle">
<Setter Property="FontFamily" Value="... to some default"></Setter>
</Style>
当然还有另外两种方法:明确定义所有标签并使用自定义渲染器,但这就像许多代码一样。
答案 0 :(得分:4)
可以在样式设置器属性中使用空值设置平台默认字体系列:
<Style x:Key="defaultLabel" TargetType="Label">
<Setter Property="FontFamily" Value="" />
</Style>
...
<Label x:Name="label" Style="{StaticResource defaultLabel}"
Text="{Binding Source={x:Reference label},
Path=Font, StringFormat='Default: {0}'}}" />