Left,Top,Right,Bottom for Padding
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Title="About WPF" Background="OrangeRed"> <Canvas> <Label Padding="0,10,20,30" Background="Orange">0,10,20,30</Label> </Canvas> </Window>
1. | The same padding on all four sides | ||
2. | Left and Right get the 1st value, Top and Bottom get the 2nd value | ||
3. | Add Thickness for Padding |