|
分類:[C#]
動的に生成したボタンを押すと、あらかじめForm1に作られていたTextBoxに値が入るようつったつもりなのですが、エラーが取れません。お分かりになるかあ助言おねがいします。
var button1 = new Button(); button1.Location = new System.Drawing.Point(20, 190); button1.Size = new System.Drawing.Size(60, 20); button1.Name = "botton1"; button1.Text = "押すと名前が出てくるぞ☆"; button1.Click += (f, g) => { System.Windows.Forms.TextBox textbox30.Text = "秀夫"; };
|