Control.FontFamily 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 la famille de polices du contrôle.
public:
property System::Windows::Media::FontFamily ^ FontFamily { System::Windows::Media::FontFamily ^ get(); void set(System::Windows::Media::FontFamily ^ value); };
[System.ComponentModel.Bindable(true)]
[System.Windows.Localizability(System.Windows.LocalizationCategory.Font)]
public System.Windows.Media.FontFamily FontFamily { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.Windows.Localizability(System.Windows.LocalizationCategory.Font)>]
member this.FontFamily : System.Windows.Media.FontFamily with get, set
Public Property FontFamily As FontFamily
Valeur de propriété
Famille de polices. La valeur par défaut est la police des boîtes de dialogue du système.
- Attributs
Exemples
L’exemple suivant montre comment définir la propriété de famille de polices d’un contrôle.
<Button Name="btn2" FontFamily="Arial"
Click="ChangeFontFamily">
FontFamily
</Button>
void ChangeFontFamily(object sender, RoutedEventArgs e)
{
ffamily = btn2.FontFamily;
str = ffamily.ToString();
if (str == ("Arial Black"))
{
btn2.FontFamily = new FontFamily("Arial");
btn2.Content = "FontFamily";
}
else
{
btn2.FontFamily = new FontFamily("Arial Black");
btn2.Content = "Control font family changes from Arial to Arial Black.";
}
}
Private Sub ChangeFontFamily(ByVal Sender As Object, ByVal e As RoutedEventArgs)
ffamily = btn2.FontFamily
str = ffamily.ToString()
If (str = ("Arial Black")) Then
btn2.FontFamily = New FontFamily("Arial")
btn2.Content = "FontFamily"
Else
btn2.FontFamily = New FontFamily("Arial Black")
btn2.Content = "Control font family changes from Arial to Arial Black."
End If
End Sub
Remarques
Cette propriété affecte uniquement un contrôle dont le modèle utilise la FontFamily propriété comme paramètre. Sur d’autres contrôles, cette propriété n’a aucun impact.
Informations sur les propriétés de dépendance
Champ d’identificateur | FontFamilyProperty |
Propriétés de métadonnées définies sur true |
AffectsMeasure, AffectsRender, Inherits |