Typography.StandardLigatures 属性

定义

获取或设置一个值,该值指示是否启用标准连字。

public:
 property bool StandardLigatures { bool get(); void set(bool value); };
public bool StandardLigatures { get; set; }
member this.StandardLigatures : bool with get, set
Public Property StandardLigatures As Boolean

属性值

如果启用了标准连字,true;否则,false。 默认值为 true

注解

此属性获取或设置拥有 Typography 属性的对象上的值,这是访问 Typography 类实例的唯一方法。 此外,此属性支持附加属性用法,以便可以在 XAML 中包含文本的对象上设置它。

以下文本显示 Pericles 字体的标准连字字形。

使用 OpenType 标准连字 文本
标准连字集的示例

下面的代码示例演示如何使用 StandardLigatures 属性定义 Pericles 字体的标准连字字形。

<Paragraph FontFamily="Pericles" Typography.StandardLigatures="True">
  <Run Typography.StylisticAlternates="1">FI</Run>
  <Run Typography.StylisticAlternates="1">FL</Run>
  <Run Typography.StylisticAlternates="1">TH</Run>
  <Run Typography.StylisticAlternates="1">TT</Run>
  <Run Typography.StylisticAlternates="1">TV</Run>
  <Run Typography.StylisticAlternates="1">TW</Run>
  <Run Typography.StylisticAlternates="1">TY</Run>
  <Run Typography.StylisticAlternates="1">VT</Run>
  <Run Typography.StylisticAlternates="1">WT</Run>
  <Run Typography.StylisticAlternates="1">YT</Run>
</Paragraph>

默认情况下,WPF 中的 OpenTypes 字体启用标准连字。 例如,如果使用 Palatino Linotype 字体,则标准连字“fi”、“ff”和“fl”显示为组合字符字形。 请注意,每个标准连字的字符对相互接触。

使用 OpenType 标准连字 文本
默认启用的标准连字示例

但是,可以禁用标准连字功能,以便标准连字(如“ff”)显示为两个单独的字形,而不是组合字符字形。

使用禁用的 OpenType 标准连字 文本
禁用的标准连字的示例

下面的代码示例演示如何使用 StandardLigatures 属性为 Palatino Linotype 字体禁用标准连字形。

<!-- Set standard ligatures to false in order to disable feature. -->
<Paragraph Typography.StandardLigatures="False" FontFamily="Palatino Linotype" FontSize="72">
  fi ff fl
</Paragraph>

如果 StandardLigatures 的值 true 且所选字体不支持标准连字,则会显示字母的默认形式。

XAML 属性用法

< objectTypography.StandardLigatures=“bool”/>

Dependency 属性信息

标识符字段 StandardLigaturesProperty
设置为 true 的元数据属性 AffectsMeasureAffectsRenderInherits

适用于

另请参阅