Typography.ContextualAlternates 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值會決定是否可以根據所呈現文字的內容來使用自定義圖像形式。
public:
property bool ContextualAlternates { bool get(); void set(bool value); };
public bool ContextualAlternates { get; set; }
member this.ContextualAlternates : bool with get, set
Public Property ContextualAlternates As Boolean
屬性值
如果可以使用自定義圖像表單,true
;否則,false
。 預設值為 true
。
備註
這個屬性會取得或設定對象上擁有 Typography
屬性的值,這是存取 Typography 類別實例的唯一方法。 此外,這個屬性支援附加屬性的使用方式,以便在 XAML 中包含文字的物件上設定它。
隨機內容替代專案提供單一字元的多個替代字元。 使用腳本類型字型實作時,這項功能可以使用一組隨機選擇的字元來模擬手寫,外觀稍有差異。 下列文字會使用Lindsey字型的隨機內容替代專案。 請注意,字母 “a” 的外觀稍有不同
隨機內容替代專案的範例
下列程式代碼範例示範如何使用 ContextualAlternates 屬性,定義 Lindsey 字型的隨機內容替代專案。
<TextBlock FontFamily="Lindsey">
<Run Typography.ContextualAlternates="True">
a banana in a cabana
</Run>
</TextBlock>
XAML 屬性使用方式
< objectTypography.ContextualAlternates=“bool”/>
相依性屬性資訊
標識元欄位 | ContextualAlternatesProperty |
設定為 true 的元數據屬性 |
AffectsMeasure、AffectsRender、Inherits |