110,891
社区成员
发帖
与我相关
我的任务
分享
foreach (Control ctl in this.Controls)
{
if (ctl is Button)
{
Button btn = ctl as Button;
btn.Click += new System.EventHandler(btn_Click);
}
}