次の方法で共有


Form.ControlCollection.Add メソッド

コントロールをフォームに追加します。

Overrides Public Sub Add( _
   ByVal value As Control _)
[C#]
public override void Add(Controlvalue);
[C++]
public: void Add(Control* value);
[JScript]
public override function Add(
   value : Control);

パラメータ

  • value
    フォームに追加する Control

例外

例外の種類 条件
Exception マルチ ドキュメント インターフェイス (MDI: Multiple Document Interface) 親フォームには、コントロールを追加できません。

解説

このメソッドを使用して、コントロールをフォームに追加できます。既に作成されているコントロールのグループをフォームに追加する場合は、 Control.ControlCollection クラスの ControlCollection.AddRange メソッドを使用します。

使用例

[Visual Basic, C#, C++] TextBox コントロールと Label コントロールをフォームのコントロール コレクションに追加する例を次に示します。この例は、Form1 という名前でフォームが作成されていることを前提にしています。

 
Public Sub AddMyControls()
    Dim textBox1 As New TextBox()
    Dim label1 As 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)
End Sub 'AddMyControls

[C#] 
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);
 }
 

[C++] 
public:
void AddMyControls()
 {
    TextBox* textBox1 = new TextBox();
    Label* label1 = new Label();
    
    // Initialize the controls and their bounds.
    label1->Text = S"First Name";
    label1->Location = Point(48,48);
    label1->Size = System::Drawing::Size(104, 16);
    textBox1->Text = S"";
    textBox1->Location = Point(48, 64);
    textBox1->Size = System::Drawing::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);
 }
 

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Form.ControlCollection クラス | Form.ControlCollection メンバ | System.Windows.Forms 名前空間 | Remove