C#のテキストボックスについて質問があります。クリックするとテキストボックスを作成するボタンを作成しました。
private void helloButton_Click(object sender, EventArgs e)
{
TextBox txtRun = new TextBox();
TextBox txtRun2 = new TextBox();
txtRun2.Name = "txtDynamic2" + c++;
txtRun.Name = "txtDynamic" + c++;
txtRun.Location = new System.Drawing.Point(40, 50 + (20 * c));
txtRun2.Location = new System.Drawing.Point(250, 50 + (20 * c));
txtRun2.ReadOnly = true;
txtRun.Size = new System.Drawing.Size(200, 25);
txtRun2.Size = new System.Drawing.Size(200, 25);
this.Controls.Add(txtRun);
this.Controls.Add(txtRun2);
}
ユーザーが入力したテキストをこれらの新しく生成されたテキストボックスにプルして、別の関数(別のボタンで呼び出される)の引数として使用するにはどうすればよいですか?私はこれにまったく慣れていないので、ヘルプを使用できます。
前もって感謝します。