Grid.Padding Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the distance between the border and its child object.
public:
property Thickness Padding { Thickness get(); void set(Thickness value); };
Thickness Padding();
void Padding(Thickness value);
public Thickness Padding { get; set; }
var thickness = grid.padding;
grid.padding = thickness;
Public Property Padding As Thickness
<Grid Padding="uniform"/>
- or -
<Grid Padding="left&right,top&bottom"/>
- or -
<Grid Padding="left,top,right,bottom"/>
Property Value
The dimensions of the space between the border and its child as a Thickness value. Thickness is a structure that stores dimension values using pixel measures.
Remarks
A related property is Margin (a property of FrameworkElement). For more info about the relationship between margin and padding, see Alignment, margin, and padding or Define layouts with XAML.