다음을 통해 공유


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 특성 사용

< 개체Typography.StandardLigatures="bool"/>

종속성 속성 정보

식별자 필드 StandardLigaturesProperty
true 설정된 메타데이터 속성 AffectsMeasure, AffectsRender, Inherits

적용 대상

추가 정보