Control.FontStyle Propriété

Définition

Obtient ou définit le style de la police.

public:
 property System::Windows::FontStyle FontStyle { System::Windows::FontStyle get(); void set(System::Windows::FontStyle value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.FontStyle FontStyle { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.FontStyle : System.Windows.FontStyle with get, set
Public Property FontStyle As FontStyle

Valeur de propriété

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

Attributs

Exemples

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

<Button Name="btn4" FontStyle="Normal" 
        Click="ChangeFontStyle">
  FontStyle
</Button>
void ChangeFontStyle(object sender, RoutedEventArgs e)
{
    if (btn4.FontStyle == FontStyles.Italic)
    {
        btn4.FontStyle = FontStyles.Normal;
        btn4.Content = "FontStyle";
    }
    else
    {
        btn4.FontStyle = FontStyles.Italic;
        btn4.Content = "Control font style changes from Normal to Italic.";
    }
}
Private Sub ChangeFontStyle(ByVal Sender As Object, ByVal e As RoutedEventArgs)

    If (btn4.FontStyle = FontStyles.Italic) Then

        btn4.FontStyle = FontStyles.Normal
        btn4.Content = "FontStyle"

    Else

        btn4.FontStyle = FontStyles.Italic
        btn4.Content = "Control font style changes from Normal to Italic."
    End If
End Sub

Remarques

Cette propriété affecte uniquement un contrôle dont le modèle utilise la FontStyle propriété comme paramètre. Sur les autres contrôles, cette propriété n’a aucun impact.

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

Champ Identificateur FontStyleProperty
Propriétés de métadonnées définies sur true AffectsMeasure, AffectsRender, Inherits

S’applique à