ItemsPresenter.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 ItemsPresenter and its child objects.
public:
property Thickness Padding { Thickness get(); void set(Thickness value); };
Thickness Padding();
void Padding(Thickness value);
public Thickness Padding { get; set; }
var thickness = itemsPresenter.padding;
itemsPresenter.padding = thickness;
Public Property Padding As Thickness
<ItemsPresenter Padding="uniform"/>
- or -
<ItemsPresenter Padding="left&right,top&bottom"/>
- or -
<ItemsPresenter Padding="left,top,right,bottom"/>
Property Value
The dimensions of the space between the presenter and its children as a Thickness value. Thickness is a structure that stores dimension values using pixel measures.
Remarks
A Padding value applies to presentation rendering of each presented item and also to the header (if one is specified).
A related property is Margin (a property of FrameworkElement). For ItemsPresenter , margin and padding would typically blend together with the division between them not being apparent in the rendering. So it's typical to specify a Margin or a Padding, but not both. For more info about the relationship between margin and padding, see Alignment, margin, and padding or Define layouts with XAML.