Control.FontStyle Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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 |