如何为这个 tabitem 的标题和内容设置不同的字体?
问问题
3274 次
1 回答
2
就像 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>
于 2010-07-29T12:56:55.840 回答