C# の Windows フォームを使用していて、助けが必要です。他のボタンを作成してリスト「ボタン」に追加するボタンがあります。作成した各ボタンをクリックすると、それ自体が破棄される必要があります。
//create new button
Button newButton = new Button();
newButton.Name = "aButt"+buttNum;
Debug.WriteLine(newButton.Name);
buttNum++;
newButton.Text = "Button!";
newButton.Height = 50;
newButton.Width = 50;
//controls where the new button gets placed
if (curX > 9)
{
curX = 0;
curY++;
//defines the point the button spawns
newButton.Location = new System.Drawing.Point((curX * 55)+10, curY * 55);
//increments X to avoid placing a button on top of another
curX++;
}
else
{
newButton.Location = new System.Drawing.Point((curX * 55) + 10, curY * 55);
curX++;
}
newButton.UseVisualStyleBackColor = true;
newButton.Click += new System.EventHandler(this.removeThisButton);
buttons.Add(newButton);
this.Controls.Add(newButton);
イベントリスナーを設定しましたが、送信者はボタン自体に関する実際の情報を持っていないため、それを取り除く方法がわかりません。
どんな助けでも大歓迎です!