Typography.StandardLigatures Property
Gets or sets a value that indicates whether standard ligatures are enabled.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object Typography.StandardLigatures="bool"/>
Property Value
Type: System.Booleantrue if standard ligatures are enabled; otherwise, false. The default value is true.
This property gets or sets a value on the object that owns a Typography property, which is the only way to access a Typography class instance. In addition, this property supports an attached property usage so that it can be set on text-containing objects in XAML.
The following text displays standard ligature glyphs for the Pericles font.

The following code example shows how to define standard ligature glyphs for the Pericles font, using the StandardLigatures property.
<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>
By default, OpenTypes fonts in WPF enable standard ligatures. For example, if you use the Palatino Linotype font, the standard ligatures "fi", "ff", and "fl" appear as a combined character glyph. Notice that the pair of characters for each standard ligature touch each other.

However, you can disable standard ligature features so that a standard ligature such as "ff" displays as two separate glyphs, rather than as a combined character glyph.

The following code example shows how to disable standard ligature glyphs for the Palatino Linotype font, using the StandardLigatures property.
<!-- Set standard ligatures to false in order to disable feature. --> <Paragraph Typography.StandardLigatures="False" FontFamily="Palatino Linotype" FontSize="72"> fi ff fl </Paragraph>
If the value of StandardLigatures is true and the selected font does not support standard ligatures, the default form of the letter is displayed.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.