Typography.StandardLigatures 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值表示是否啟用標準連字。
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 字型的標準連字元字元。
標準連字集的範例
下列程式代碼範例示範如何使用 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” 會顯示為合併字元字元。 請注意,每個標準韌帶的字元組彼此接觸。
默認啟用標準連字的範例
不過,您可以停用標準韌帶功能,讓標準韌帶,例如 “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”/>
相依性屬性資訊
標識元欄位 | StandardLigaturesProperty |
設定為 true 的元數據屬性 |
AffectsMeasure、AffectsRender、Inherits |