Partilhar via


Como: Definir margens de Elementos e Controles

Este exemplo descreve como definir a propriedade Margin, alterando qualquer valor de propriedade existente para a margem no arquivo de lógica. A propriedade Margin é uma propriedade do elemento FrameworkElement base e, portanto, é herdada por uma variedade de controles e outros elementos. For the complete sample, see Configuração Margens exemplo.

Este exemplo é escrito em Extensible Application Markup Language (XAML), com um arquivo de lógica a que o XAML se refere. O arquivo de lógica é mostrado tanto na sua versão C# quanto na Microsoft Visual Basic .NET.

Exemplo

<Button Click="OnClick" Margin="10" Name="btn1">
Click To See Change!!</Button>
Private Sub OnClick(ByVal sender As Object, ByVal e As RoutedEventArgs)

    ' Get the current value of the property.
    Dim marginThickness As Thickness
    marginThickness = btn1.Margin
    ' If the current leftlength value of margin is set to 10 then change it to a new value.
    ' Otherwise change it back to 10.
    If marginThickness.Left = 10 Then
        btn1.Margin = New Thickness(60)
    Else
        btn1.Margin = New Thickness(10)
    End If
End Sub
void OnClick(object sender, RoutedEventArgs e)
{
    // Get the current value of the property.
    Thickness marginThickness = btn1.Margin;
    // If the current leftlength value of margin is set to 10 then change it to a new value.
    // Otherwise change it back to 10.
    if(marginThickness.Left == 10)
    {
         btn1.Margin = new Thickness(60);
    } else {
         btn1.Margin = new Thickness(10);
    }
}

For the complete sample, see Configuração Margens exemplo.