#80 – Content Properties and Collection Syntax Express UIElement Containment
September 30, 2010 Leave a comment
Using both a content property and the collection syntax is quite common in XAML and often expresses containment of a collection of UIElement objects in a parent container.
For example, the StackPanel is a parent control, containing a number of child controls:
<StackPanel> <Label Content="A label" Height="28" /> <Button Content="Click Me" Height="23" /> </StackPanel>
In this example, containment is expressed by listing the child controls contained in the StackPanel as child elements in XAML.
This containment shorthand is possible for two reasons:
- StackPanel‘s content property is Children, an UIElementCollection
- We can specify the members of the UIElementCollection using collection syntax, by listing its members
All containers that inherit from System.Windows.Controls.Panel have Children as their content property–including Grid, StackPanel, Canvas, WrapPanel, etc.