System.Windows.Forms Namesp ...


.NET Framework Class Library
Control..::.ControlCollection Class

Represents a collection of Control objects.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Syntax

Visual Basic (Declaration)
<ListBindableAttribute(False)> _
<ComVisibleAttribute(False)> _
Public Class ControlCollection _
    Inherits ArrangedElementCollection _
    Implements IList, ICollection, IEnumerable, ICloneable
Visual Basic (Usage)
Dim instance As Control.ControlCollection
C#
[ListBindableAttribute(false)]
[ComVisibleAttribute(false)]
public class ControlCollection : ArrangedElementCollection, 
    IList, ICollection, IEnumerable, ICloneable
Visual C++
[ListBindableAttribute(false)]
[ComVisibleAttribute(false)]
public ref class ControlCollection : public ArrangedElementCollection, 
    IList, ICollection, IEnumerable, ICloneable
JScript
public class ControlCollection extends ArrangedElementCollection implements IList, ICollection, IEnumerable, ICloneable
Remarks

The Add, Remove, and RemoveAt methods enable you to add and remove individual controls from the collection. You can also use the AddRange or Clear methods to add or remove all the controls from the collection.

You can determine if a Control is a member of the collection by passing the control into the Contains method. To get the index value of the location of a Control in the collection, pass the control into the IndexOf method. The collection can be copied into an array by calling the CopyTo method.

Examples

The following code example removes a Control from the Control..::.ControlCollection of the derived class Panel if it is a member of the collection. The example requires that you have created a Panel, a Button, and at least one RadioButton control on a Form. The RadioButton controls are added to the Panel control, and the Panel control added to the Form. When the button is clicked, the radio button named radioButton2 is removed from the Control..::.ControlCollection.

Visual Basic
    ' Remove the RadioButton control if it exists.
    Private Sub RemoveButton_Click(ByVal sender As System.Object, _
        ByVal e As System.EventArgs) Handles RemoveButton.Click
        If Panel1.Controls.Contains(RadioAddRangeButton) Then
            Panel1.Controls.Remove(RadioAddRangeButton)
        End If
    End Sub
C#
// Remove the RadioButton control if it exists.
private void removeButton_Click(object sender, System.EventArgs e)
{
   if(panel1.Controls.Contains(removeButton))
   {
      panel1.Controls.Remove(removeButton);
   }
}
Visual C++
   // Remove the RadioButton control if it exists.
private:
   void removeButton_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      if ( panel1->Controls->Contains( removeButton ) )
      {
         panel1->Controls->Remove( removeButton );
      }
   }
Inheritance Hierarchy

System..::.Object
  System.Windows.Forms.Layout..::.ArrangedElementCollection
    System.Windows.Forms..::.Control..::.ControlCollection
      System.Windows.Forms..::.DataGridView..::.DataGridViewControlCollection
      System.Windows.Forms..::.Form..::.ControlCollection
      System.Windows.Forms..::.MdiClient..::.ControlCollection
      System.Windows.Forms..::.TabControl..::.ControlCollection
      System.Windows.Forms..::.TableLayoutControlCollection
      System.Windows.Forms..::.TabPage..::.TabPageControlCollection
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 XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

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, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0
See Also

Reference

Tags :


Page view tracker