Control.FontWeight Proprietà

Definizione

Recupera o imposta lo spessore del tipo di carattere specificato.

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

Valore della proprietà

FontWeight

Valore FontWeight. Il valore predefinito è Normal.

Attributi

Esempio

Nell'esempio seguente viene illustrato come impostare la FontWeight proprietà di un controllo.

<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

Commenti

Questa proprietà influisce solo su un controllo il cui modello usa la FontWeight proprietà come parametro. In altri controlli questa proprietà non ha alcun impatto. Per un elenco di valori predefiniti FontWeight , vedere la FontWeights classe .

Informazioni proprietà di dipendenza

Campo Identificatore FontWeightProperty
Proprietà dei metadati impostate su true AffectsMeasure, AffectsRender, Inherits

Si applica a