programming-examples/c-sharp/Others/Left,Top,Right,Bottom for Padding.cs

13 lines
275 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
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>