Form.ControlCollection.Add Method
.NET Framework 3.0
Adds a control to the form.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
You can use this method to add controls to the form. If you want to add a group of already created controls to the form, use the Control.ControlCollection.AddRange method of the Control.ControlCollection class.
The following code example adds a TextBox and Label control to the control collection of a form. The example requires that a form has been created and named Form1.
public void AddMyControls() { TextBox textBox1 = new TextBox(); Label label1 = new Label(); // Initialize the controls and their bounds. label1.Text = "First Name"; label1.Location = new Point(48,48); label1.Size = new Size (104, 16); textBox1.Text = ""; textBox1.Location = new Point(48, 64); textBox1.Size = new Size(104,16); // Add the TextBox control to the form's control collection. Controls.Add(textBox1); // Add the Label control to the form's control collection. Controls.Add(label1); }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Show: