Panel.Children Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the collection of child elements of the panel.
Namespace: System.Windows.Controls
Assembly: System.Windows (in System.Windows.dll)
Syntax
'Declaration
Public ReadOnly Property Children As UIElementCollection
public UIElementCollection Children { get; }
<panel>
oneOrMoreUIElements
</panel>
XAML Values
- oneOrMoreUIElements
One or more object elements for objects that derive from UIElement.
Property Value
Type: System.Windows.Controls.UIElementCollection
The collection of child objects. The default is an empty collection.
Remarks
You can use implicit collection syntax in XAML to add items, or methods of the UIElementCollection in code to add items or otherwise adjust the existing collection.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also