The same margin on all four sides : Margin « Windows Presentation Foundation « C# / C Sharp






The same margin on all four sides

The same margin on all four sides
      

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  Title="About WPF" 
  Background="OrangeRed">

    <Canvas>


  <Border BorderBrush="Black" BorderThickness="1">

    <Label Margin="10" Background="Aqua">10</Label>
  </Border>
    </Canvas>

</Window>

   
    
    
    
    
    
  








Related examples in the same category

1.No marginNo margin
2.Margin: Left,Top,Right,BottomMargin: Left,Top,Right,Bottom
3.Set margins, by changing any existing property value for the margin in code-behind with Thickness classSet margins, by changing any existing property value for the margin in code-behind with Thickness class
4.Change the margins of an element that is within a Grid by XAML and programmatic codeChange the margins of an element that is within a Grid by XAML and programmatic code