TextElement.FontWeight 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定項目內容的最上層字型粗細。
public:
property System::Windows::FontWeight FontWeight { System::Windows::FontWeight get(); void set(System::Windows::FontWeight value); };
public System.Windows.FontWeight FontWeight { get; set; }
member this.FontWeight : System.Windows.FontWeight with get, set
Public Property FontWeight As FontWeight
屬性值
所需的字型粗細。 預設值是由 MessageFontWeight 值決定。
範例
下列範例示範如何使用 做為範例專案來設定 FontWeight 屬性 Paragraph 。
<Paragraph
FontFamily="Century Gothic, Courier New"
FontSize="16pt"
FontStretch="UltraExpanded"
FontStyle="Italic"
FontWeight="DemiBold"
>
<Run>
This text will use the Century Gothic font (if available), with fallback to Courier New. It
will render with a font size of 16 points in ultra-expanded demi-bold italic.
</Run>
</Paragraph>
下圖顯示上述範例的呈現方式。
下列範例示範如何以程式設計方式設定 FontWeight 屬性。
Run run = new Run(
"This text will use the Century Gothic font (if available), with fallback to Courier New."
+ "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.");
Paragraph par = new Paragraph(run);
par.FontFamily = new FontFamily("Century Gothic, Courier New");
par.FontSize = 16;
par.FontStretch = FontStretches.UltraExpanded;
par.FontStyle = FontStyles.Italic;
par.FontWeight = FontWeights.DemiBold;
Dim run As New Run("This text will use the Century Gothic font (if available), with fallback to Courier New." & "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.")
Dim par As New Paragraph(run)
With par
.FontFamily = New FontFamily("Century Gothic, Courier New")
.FontSize = 16
.FontStretch = FontStretches.UltraExpanded
.FontStyle = FontStyles.Italic
.FontWeight = FontWeights.DemiBold
End With
備註
此相依性屬性也有附加屬性使用方式。 在 XAML 中,使用方式是 <object TextElement.FontWeight="value".../>
,其中 object 是物件專案 (通常是流程專案) 包含在 內 TextElement ,而 value 是列舉的 FontWeight 其中一個字串格式值。 在程式碼中,和 SetFontWeight 方法支援 GetFontWeight 附加屬性使用方式。 附加屬性使用方式並不常見,因為大部分可以包含在 中的 TextElement 元素都支援類似非附加 FontWeight
屬性,內容主機會用來轉譯。
相依性屬性資訊
識別碼欄位 | FontWeightProperty |
中繼資料屬性設定為 true |
AffectsMeasure、AffectsRender、Inherits |