Layout Item
A LayoutItem object is a control that provides label and content regions. The control region can display any UIElement object.
You can use LayoutItems within a LayoutControl, whenever you need to display a label next to a control.
The LayoutControl supports automatic alignment for its child LayoutItem objects. The left edges of items' content regions are automatically aligned within groups and even across multiple groups. See Aligning contents of LayoutItems to learn more.
To provide a label for a LayoutItem, use the LayoutItem.Label property. The LayoutItem.LabelTemplate allows you to specify a DataTemplate used to render the label. The label's style can be customized via the LayoutItem.LabelStyle property.
You can display the label at the top of the item's content region. To change the position, see the LayoutItem.LabelPosition property.
A layout item's content can be specified via the LayoutItem.Content property. To specify an item's content in XAML, define the required object between the LayoutItem start and end tags.