Aracılığıyla paylaş


Typeface Oluşturucular

Tanım

Typeface sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

Typeface(String)

Belirtilen yazı tipi ailesi yazı biçimi adı için sınıfının yeni bir örneğini Typeface başlatır.

Typeface(FontFamily, FontStyle, FontWeight, FontStretch)

Belirtilen yazı tipi ailesi adı, Style, Weightve Stretch değerleri için sınıfının yeni bir örneğini Typeface başlatır.

Typeface(FontFamily, FontStyle, FontWeight, FontStretch, FontFamily)

Belirtilen yazı tipi ailesi adı, Style, Weightve Stretch değerleri için sınıfının yeni bir örneğini Typeface başlatır. Ayrıca, bir geri dönüş yazı tipi ailesi belirtilir.

Typeface(String)

Belirtilen yazı tipi ailesi yazı biçimi adı için sınıfının yeni bir örneğini Typeface başlatır.

public:
 Typeface(System::String ^ typefaceName);
public Typeface (string typefaceName);
new System.Windows.Media.Typeface : string -> System.Windows.Media.Typeface
Public Sub New (typefaceName As String)

Parametreler

typefaceName
String

Belirtilen yazı tipi ailesi için yazı biçimi adı.

Örnekler

// Return the typeface for the selected font family name.
Typeface typeface1 = new Typeface("Verdana");

// Return the typeface for the selected font family name and font values.
Typeface typeface2 = new Typeface(new FontFamily("file:///C:\\MyFonts\\#Pericles Light"),
                                                 FontStyles.Italic,
                                                 FontWeights.ExtraBold,
                                                 FontStretches.Condensed);

// Return the typeface for the selected font family name, font values, and fallback font family name.
Typeface typeface3 = new Typeface(new FontFamily("file:///C:\\MyFonts\\#Pericles"),
                                                 FontStyles.Italic,
                                                 FontWeights.ExtraBold,
                                                 FontStretches.Condensed,
                                                 new FontFamily("Arial"));
' Return the typeface for the selected font family name.
Dim typeface1 As New Typeface("Verdana")

' Return the typeface for the selected font family name and font values.
Dim typeface2 As New Typeface(New FontFamily("file:///C:\MyFonts\#Pericles Light"), FontStyles.Italic, FontWeights.ExtraBold, FontStretches.Condensed)

' Return the typeface for the selected font family name, font values, and fallback font family name.
Dim typeface3 As New Typeface(New FontFamily("file:///C:\MyFonts\#Pericles"), FontStyles.Italic, FontWeights.ExtraBold, FontStretches.Condensed, New FontFamily("Arial"))

Şunlara uygulanır

Typeface(FontFamily, FontStyle, FontWeight, FontStretch)

Belirtilen yazı tipi ailesi adı, Style, Weightve Stretch değerleri için sınıfının yeni bir örneğini Typeface başlatır.

public:
 Typeface(System::Windows::Media::FontFamily ^ fontFamily, System::Windows::FontStyle style, System::Windows::FontWeight weight, System::Windows::FontStretch stretch);
public Typeface (System.Windows.Media.FontFamily fontFamily, System.Windows.FontStyle style, System.Windows.FontWeight weight, System.Windows.FontStretch stretch);
new System.Windows.Media.Typeface : System.Windows.Media.FontFamily * System.Windows.FontStyle * System.Windows.FontWeight * System.Windows.FontStretch -> System.Windows.Media.Typeface
Public Sub New (fontFamily As FontFamily, style As FontStyle, weight As FontWeight, stretch As FontStretch)

Parametreler

fontFamily
FontFamily

Yazı tipinin yazı tipi ailesi.

style
FontStyle

Yazı tipinin stili.

weight
FontWeight

Yazı tipinin göreli ağırlığı.

stretch
FontStretch

Yazı tipinin uzatıldığı derece.

Örnekler

// Return the typeface for the selected font family name.
Typeface typeface1 = new Typeface("Verdana");

// Return the typeface for the selected font family name and font values.
Typeface typeface2 = new Typeface(new FontFamily("file:///C:\\MyFonts\\#Pericles Light"),
                                                 FontStyles.Italic,
                                                 FontWeights.ExtraBold,
                                                 FontStretches.Condensed);

// Return the typeface for the selected font family name, font values, and fallback font family name.
Typeface typeface3 = new Typeface(new FontFamily("file:///C:\\MyFonts\\#Pericles"),
                                                 FontStyles.Italic,
                                                 FontWeights.ExtraBold,
                                                 FontStretches.Condensed,
                                                 new FontFamily("Arial"));
' Return the typeface for the selected font family name.
Dim typeface1 As New Typeface("Verdana")

' Return the typeface for the selected font family name and font values.
Dim typeface2 As New Typeface(New FontFamily("file:///C:\MyFonts\#Pericles Light"), FontStyles.Italic, FontWeights.ExtraBold, FontStretches.Condensed)

' Return the typeface for the selected font family name, font values, and fallback font family name.
Dim typeface3 As New Typeface(New FontFamily("file:///C:\MyFonts\#Pericles"), FontStyles.Italic, FontWeights.ExtraBold, FontStretches.Condensed, New FontFamily("Arial"))

Şunlara uygulanır

Typeface(FontFamily, FontStyle, FontWeight, FontStretch, FontFamily)

Belirtilen yazı tipi ailesi adı, Style, Weightve Stretch değerleri için sınıfının yeni bir örneğini Typeface başlatır. Ayrıca, bir geri dönüş yazı tipi ailesi belirtilir.

public:
 Typeface(System::Windows::Media::FontFamily ^ fontFamily, System::Windows::FontStyle style, System::Windows::FontWeight weight, System::Windows::FontStretch stretch, System::Windows::Media::FontFamily ^ fallbackFontFamily);
public Typeface (System.Windows.Media.FontFamily fontFamily, System.Windows.FontStyle style, System.Windows.FontWeight weight, System.Windows.FontStretch stretch, System.Windows.Media.FontFamily fallbackFontFamily);
new System.Windows.Media.Typeface : System.Windows.Media.FontFamily * System.Windows.FontStyle * System.Windows.FontWeight * System.Windows.FontStretch * System.Windows.Media.FontFamily -> System.Windows.Media.Typeface
Public Sub New (fontFamily As FontFamily, style As FontStyle, weight As FontWeight, stretch As FontStretch, fallbackFontFamily As FontFamily)

Parametreler

fontFamily
FontFamily

Yazı tipinin yazı tipi ailesi.

style
FontStyle

Yazı tipinin stili.

weight
FontWeight

Yazı tipinin göreli ağırlığı.

stretch
FontStretch

Yazı tipinin uzatıldığı derece.

fallbackFontFamily
FontFamily

Birincil yazı tipi ailesinin (parametresi tarafından fontFamily belirtilen) görüntüleyemediği bir karakterle karşılaşıldığında kullanılan yazı tipi ailesi.

Örnekler

// Return the typeface for the selected font family name.
Typeface typeface1 = new Typeface("Verdana");

// Return the typeface for the selected font family name and font values.
Typeface typeface2 = new Typeface(new FontFamily("file:///C:\\MyFonts\\#Pericles Light"),
                                                 FontStyles.Italic,
                                                 FontWeights.ExtraBold,
                                                 FontStretches.Condensed);

// Return the typeface for the selected font family name, font values, and fallback font family name.
Typeface typeface3 = new Typeface(new FontFamily("file:///C:\\MyFonts\\#Pericles"),
                                                 FontStyles.Italic,
                                                 FontWeights.ExtraBold,
                                                 FontStretches.Condensed,
                                                 new FontFamily("Arial"));
' Return the typeface for the selected font family name.
Dim typeface1 As New Typeface("Verdana")

' Return the typeface for the selected font family name and font values.
Dim typeface2 As New Typeface(New FontFamily("file:///C:\MyFonts\#Pericles Light"), FontStyles.Italic, FontWeights.ExtraBold, FontStretches.Condensed)

' Return the typeface for the selected font family name, font values, and fallback font family name.
Dim typeface3 As New Typeface(New FontFamily("file:///C:\MyFonts\#Pericles"), FontStyles.Italic, FontWeights.ExtraBold, FontStretches.Condensed, New FontFamily("Arial"))

Açıklamalar

null parametresinin fallbackFontFamily geçirilmesi, birincil yazı tipi ailesine dahil edilmeyen karakterler için kutu karakterlerinin görüntülenmesine neden olur.

Şunlara uygulanır