programming-examples/c-sharp/Others/The same margin on all four sides.cs

18 lines
325 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
The same margin on all four sides
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Title="About WPF"
Background="Red">
<Canvas>
<Border BorderBrush="Black" BorderThickness="1">
<Label Margin="12" Background="Aqua">12</Label>
</Border>
</Canvas>
</Window>