Control.FontWeight プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したフォントの太さを取得または設定します。
public:
property System::Windows::FontWeight FontWeight { System::Windows::FontWeight get(); void set(System::Windows::FontWeight value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.FontWeight FontWeight { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.FontWeight : System.Windows.FontWeight with get, set
Public Property FontWeight As FontWeight
プロパティ値
FontWeight 値。 既定値は、Normal です。
- 属性
例
次の例は、コントロールのプロパティを設定する FontWeight 方法を示しています。
<Button Name="btn5" FontWeight="Normal"
Click="ChangeFontWeight">
FontWeight
</Button>
void ChangeFontWeight(object sender, RoutedEventArgs e)
{
if (btn5.FontWeight == FontWeights.Bold)
{
btn5.FontWeight = FontWeights.Normal;
btn5.Content = "FontWeight";
}
else
{
btn5.FontWeight = FontWeights.Bold;
btn5.Content = "Control font weight changes from Normal to Bold.";
}
}
Private Sub ChangeFontWeight(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn5.FontWeight = FontWeights.Bold) Then
btn5.FontWeight = FontWeights.Normal
btn5.Content = "FontWeight"
Else
btn5.FontWeight = FontWeights.Bold
btn5.Content = "Control font weight changes from Normal to Bold."
End If
End Sub
注釈
このプロパティは、テンプレートでプロパティをパラメーターとして使用 FontWeight するコントロールにのみ影響します。 その他のコントロールでは、このプロパティは影響しません。 定義済みの FontWeight 値の一覧については、クラスを FontWeights 参照してください。
依存プロパティ情報
識別子フィールド | FontWeightProperty |
に設定されたメタデータ プロパティ true |
AffectsMeasure, AffectsRender, Inherits |