UIElementCollection Class
Represents an ordered collection of UIElement child elements.
Assembly: PresentationFramework (in PresentationFramework.dll)
The Panel base class uses a UIElementCollection to represent its collection of child elements. Methods and properties defined by the UIElementCollection affect all objects derived from Panel and define a common feature-set for the manipulation of Panel child elements.
A UIElementCollection has affinity to its own context (class). You must access the collection from the context of the owning Panel.
The following example uses the Add method to add child content to a parent StackPanel. You do this by using the Children property, which is of type UIElementCollection. For the complete sample, see Using Elements Sample.
void AddButton(object sender, MouseButtonEventArgs e) { sp1.Children.Clear(); btn = new Button(); btn.Content = "New Button"; sp1.Children.Add(btn); }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.