如何为tabitem标题和此tabitem的内容设置不同的字体?
答案 0 :(得分:1)
与WPF中的任何内容一样,有很多方法。如果不知道你想要做什么,这里有一个“例如”(我不建议使用这种字体组合:))
<TabControl>
<TabControl.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="FontFamily" Value="Comic Sans MS" />
<Setter Property="FontSize" Value="20" />
</Style>
<Style x:Key="headerStyle" TargetType="{x:Type TextBlock}">
<Setter Property="Control.FontFamily" Value="Papyrus" />
<Setter Property="Control.FontSize" Value="12" />
</Style>
</TabControl.Resources>
<TabItem>
<TabItem.Header>
<TextBlock Text="Header" Style="{StaticResource headerStyle}" />
</TabItem.Header>
<TextBlock Text="Here is the content" />
</TabItem>
</TabControl>