System.Windows.Controls Nam ...


.NET Framework Class Library
UIElementCollection Class

Represents an ordered collection of UIElement child elements.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
Syntax

Visual Basic (Declaration)
Public Class UIElementCollection _
    Implements IList, ICollection, IEnumerable
Visual Basic (Usage)
Dim instance As UIElementCollection
C#
public class UIElementCollection : IList, 
    ICollection, IEnumerable
Visual C++
public ref class UIElementCollection : IList, 
    ICollection, IEnumerable
JScript
public class UIElementCollection implements IList, ICollection, IEnumerable
XAML
You cannot directly create an instance of this class in XAML.
Remarks

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.

Examples

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.

C#
        void AddButton(object sender, MouseButtonEventArgs e)
        {
            sp1.Children.Clear();
            btn = new Button();
            btn.Content = "New Button";
            sp1.Children.Add(btn);
        }
Inheritance Hierarchy

System..::.Object
  System.Windows.Controls..::.UIElementCollection
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

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.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Other Resources

Tags :


Page view tracker