Margin and Padding
Margin
and Padding
are two similar properties that are also related to an element’s size. All FrameworkElement
s have a Margin
property, and all Controls
(plus many other elements) have a Padding
property. Their only difference is that Margin
controls how much extra space gets placed around the outside edges of the element, whereas Padding
controls how much extra space gets placed around the inside edges of the element.
Both Margin
and Padding
are of type Thickness
, an interesting class that can represent one, two, or four double
values. Here is how the values are interpreted when set in XAML:
→ When set to a list of four values, the numbers represent the left, top, right, and bottom edges, respectively.
→ When set to a list ...
Get Universal Windows® Apps with XAML and C# Unleashed now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.