You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
342 B
C#

Margin: Left,Top,Right,Bottom
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Title="About WPF"
Background="Red">
<Canvas>
<Border BorderBrush="Cyan" BorderThickness="1">
<Label Margin="0,8,25,32" Background="Aqua">0,8,25,32</Label>
</Border>
</Canvas>
</Window>