-api-id | -api-type |
---|---|
P:Windows.UI.Xaml.Controls.ContentPresenter.Padding |
winrt property |
Gets or sets the distance between the border and its child object.
<ContentPresenter Padding="uniform"/>
- or -
<ContentPresenter Padding="left&right,top&bottom"/>
- or -
<ContentPresenter Padding="left,top,right,bottom"/>
- uniform
- uniformA value measured by pixels that specifies a uniform Thickness. The uniform value is applied to all four Thickness values (Left, Top, Right, Bottom).
- left&right
- left&rightA value measured by pixels that specifies the Left and Right values of a symmetrical Thickness.
- top&bottom
- top&bottomA value measured by pixels that specifies the Top and Bottom values of a symmetrical Thickness.
- left,top,right,bottom
- left,top,right,bottomValues measured by pixels that specify the four possible dimension values of a Thickness structure (Left, Top, Right, Bottom). In the XAML syntaxes shown, you can use a space rather than a comma as the delimiter between values.
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.