4

我正在尝试在我的 WPF TextBlock 中启用字距调整,如

<TextBlock FontFamily="Garamond" FontSize="120" Typography.Kerning="True">Table</TextBlock>
<TextBlock FontFamily="Garamond" FontSize="120" Typography.Kerning="False">Table</TextBlock>

但是,将 Kerning 设置为 True 或 False 似乎没有任何区别。我做错了什么?

4

2 回答 2

1

我认为该属性仅表示流文档上下文中的任何内容。因此,您需要将代码封装在流文档中。即使那样,我也不确定它是否会起作用,因为根据文档,您无法在 xaml 中设置该属性。

看到这个链接

除非我正在查看错误的属性,否则请忽略这一点。

于 2010-01-11T21:13:26.627 回答
0

Typography.Kerning默认为 true。你没有改变任何东西。

于 2010-01-11T18:32:31.757 回答