Control.VerticalContentAlignment Propiedad
Definición
Obtiene o establece la alineación vertical del contenido del control.Gets or sets the vertical alignment of the control's content.
public:
property System::Windows::VerticalAlignment VerticalContentAlignment { System::Windows::VerticalAlignment get(); void set(System::Windows::VerticalAlignment value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.VerticalAlignment VerticalContentAlignment { get; set; }
member this.VerticalContentAlignment : System.Windows.VerticalAlignment with get, set
Public Property VerticalContentAlignment As VerticalAlignment
Valor de propiedad
Uno de los valores de VerticalAlignment.One of the VerticalAlignment values. De manera predeterminada, es Top.The default is Top.
- Atributos
Ejemplos
En el ejemplo siguiente se muestra cómo establecer la propiedad alineación de contenido vertical en un control.The following example shows how to set the vertical content alignment property on a control.
<Button Name="btn8" Height="50"
VerticalContentAlignment="Top"
Click="ChangeVerticalContentAlignment">
VerticalContentAlignment
</Button>
void ChangeVerticalContentAlignment(object sender, RoutedEventArgs e)
{
if (btn8.VerticalContentAlignment == VerticalAlignment.Top)
{
btn8.VerticalContentAlignment = VerticalAlignment.Bottom;
btn8.Content = "Control vertical alignment changes from top to bottom.";
}
else
{
btn8.VerticalContentAlignment = VerticalAlignment.Top;
btn8.Content = "VerticalContentAlignment";
}
}
Private Sub ChangeVerticalContentAlignment(ByVal Sender As Object, ByVal e As RoutedEventArgs)
If (btn8.VerticalContentAlignment = VerticalAlignment.Top) Then
btn8.VerticalContentAlignment = VerticalAlignment.Bottom
btn8.Content = "Control vertical alignment changes from top to bottom."
Else
btn8.VerticalContentAlignment = VerticalAlignment.Top
btn8.Content = "VerticalContentAlignment"
End If
End Sub
Comentarios
TopAdemás de, Bottom VerticalContentAlignment y Center, puede establecer la propiedad en Stretch, que ajusta el elemento secundario para rellenar el espacio de diseño asignado del elemento primario.In addition to Top, Bottom, and Center, you can set the VerticalContentAlignment property to Stretch, which stretches the child element to fill the allocated layout space of the parent element. Para obtener más información, vea información general sobre alineación, márgenes y relleno.For more information, see Alignment, Margins, and Padding Overview.
Esta propiedad solo afecta a un control cuya plantilla usa VerticalContentAlignment la propiedad como un parámetro.This property only affects a control whose template uses the VerticalContentAlignment 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 | VerticalContentAlignmentProperty |
Propiedades de metadatos establecidas entrue Metadata properties set to true |
NingunaNone |