Control.FontWeight Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Establece el grosor o espesor de la fuente especificada.
public:
property System::Windows::FontWeight FontWeight { System::Windows::FontWeight get(); void set(System::Windows::FontWeight value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.FontWeight FontWeight { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.FontWeight : System.Windows.FontWeight with get, set
Public Property FontWeight As FontWeight
Valor de propiedad
Valor FontWeight. De manera predeterminada, es Normal.
- Atributos
Ejemplos
En el ejemplo siguiente se muestra cómo establecer la FontWeight propiedad de un control .
<Button Name="btn5" FontWeight="Normal"
Click="ChangeFontWeight">
FontWeight
</Button>
void ChangeFontWeight(object sender, RoutedEventArgs e)
{
if (btn5.FontWeight == FontWeights.Bold)
{
btn5.FontWeight = FontWeights.Normal;
btn5.Content = "FontWeight";
}
else
{
btn5.FontWeight = FontWeights.Bold;
btn5.Content = "Control font weight changes from Normal to Bold.";
}
}
Private Sub ChangeFontWeight(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn5.FontWeight = FontWeights.Bold) Then
btn5.FontWeight = FontWeights.Normal
btn5.Content = "FontWeight"
Else
btn5.FontWeight = FontWeights.Bold
btn5.Content = "Control font weight changes from Normal to Bold."
End If
End Sub
Comentarios
Esta propiedad solo afecta a un control cuya plantilla usa la FontWeight propiedad como parámetro. En otros controles, esta propiedad no tiene ningún impacto. Para obtener una lista de valores predefinidos FontWeight , vea la FontWeights clase .
Información sobre propiedades de dependencia
Campo identificador | FontWeightProperty |
Propiedades de metadatos establecidas en true |
AffectsMeasure, AffectsRender, Inherits |