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.

13 lines
275 B
C#

Left,Top,Right,Bottom for Padding
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
Title="About WPF"
Background="Red">
<Canvas>
<Label Padding="0,10,25,40" Background="Orange">0,10,25,40</Label>
</Canvas>
</Window>