我有一系列按钮,如下所示:
int x = 0, y = 0;
butt2 = new Button[100];
for (int i = 0; i < 100; i++)
{
butt2[i] = new Button();
int names = i;
butt2[i].Name = "b2" + names.ToString();
butt2[i].Location = new Point(525 + (x * 31), 70 + (y * 21));
butt2[i].Visible = true;
butt2[i].Size = new Size(30, 20);
butt2[i].Click += new EventHandler(butt2_2_Click); //problem lies here (1)
this.Controls.Add(butt2[i]);
}
private void butt2_2_Click(object sender, EventArgs e)
{
// want code here
}
我想在点击时更改按钮的背景颜色。我想通过i
来做到这一点:
butt2[i].BackColor = Color.Green;
答案 0 :(得分:8)
这应该可以解决问题:
private void butt2_2_Click(object sender, EventArgs e)
{
Button pushedBtn = sender as Button;
if(pushedBtn != null)
{
pushedBtn.BackColor = Color.Green;
}
}
这适用于大多数UI事件,'object sender'参数指的是'发送'/'触发'事件的控件。
要了解有关C#事件处理的更多信息,我将启动here。
此外,这里是a SO question about GUI event handling,朱丽叶很好地回答了(接受了答案)。
希望这有帮助。