Control.FontStyle Propiedad
Definición
Obtiene o establece el estilo de fuente.Gets or sets the font style.
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
Valor de propiedad
Valor FontStyle.A FontStyle value. El valor predeterminado es Normal.The default is Normal.
- Atributos
Ejemplos
En el ejemplo siguiente se muestra cómo establecer la propiedad de estilo de fuente de un control.The following example shows how to set the font style property of a control.
<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
Comentarios
Esta propiedad solo afecta a un control cuya plantilla usa la FontStyle propiedad como un parámetro.This property only affects a control whose template uses the FontStyle property as a parameter. En otros controles, esta propiedad no tiene ningún impacto.On other controls, this property has no impact.
Información sobre propiedades de dependenciaDependency Property Information
Campo de identificadorIdentifier field | FontStyleProperty |
Propiedades de metadatos establecidas en true Metadata properties set to true |
AffectsMeasure, AffectsRender, InheritsAffectsMeasure, AffectsRender, Inherits |