Represents an ordered collection of UIElement child elements.
Namespace:
System.Windows.Controls
Assembly:
PresentationFramework (in PresentationFramework.dll)
'Usage
Dim instance As UIElementCollection
'Declaration
Public Class UIElementCollection _
Implements IList, ICollection, IEnumerable
You cannot directly create an instance of this class in XAML.
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);
}
System..::.Object
System.Windows.Controls..::.UIElementCollection
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
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.
.NET Framework
Supported in: 3.5, 3.0
Reference
Other Resources