Control.FontStyle Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta lo stile del carattere.
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
Valore della proprietà
Valore FontStyle. Il valore predefinito è Normal.
- Attributi
Esempio
Nell'esempio seguente viene illustrato come impostare la proprietà dello stile del carattere di un controllo .
<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
Commenti
Questa proprietà influisce solo su un controllo il cui modello utilizza la FontStyle proprietà come parametro. In altri controlli questa proprietà non ha alcun impatto.
Informazioni proprietà di dipendenza
Campo Identificatore | FontStyleProperty |
Proprietà dei metadati impostate su true |
AffectsMeasure, AffectsRender, Inherits |