Form.ControlCollection(Form) Constructor

Definition

Initializes a new instance of the Form.ControlCollection class.

public:
 ControlCollection(System::Windows::Forms::Form ^ owner);
public ControlCollection (System.Windows.Forms.Form owner);
new System.Windows.Forms.Form.ControlCollection : System.Windows.Forms.Form -> System.Windows.Forms.Form.ControlCollection
Public Sub New (owner As Form)

Parameters

owner
Form

The Form to contain the controls added to the control collection.

Remarks

This constructor allows you to properly bind the control collection to the form to enable controls to be added to the form.

Note

Because the control collection must be created with a specified form, you cannot create multiple collections of controls and interchange them with the form.

Applies to