Control.FontWeight Propriété

Définition

Obtient ou définit l’épaisseur de la police spécifiée.

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

Valeur de propriété

FontWeight

Valeur FontWeight. La valeur par défaut est Normal.

Attributs

Exemples

L’exemple suivant montre comment définir la FontWeight propriété d’un contrôle.

<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

Remarques

Cette propriété affecte uniquement un contrôle dont le modèle utilise la FontWeight propriété comme paramètre. Sur d’autres contrôles, cette propriété n’a aucun impact. Pour obtenir la liste des valeurs prédéfinies FontWeight , consultez la FontWeights classe.

Informations sur les propriétés de dépendance

Champ d’identificateur FontWeightProperty
Propriétés de métadonnées définies sur true AffectsMeasure, AffectsRender, Inherits

S’applique à