07
2012
07

C# 如何在代码中对所有button控件操作啊

List<Control> buttonList = new List<Control>();
foreach (Control control in Controls)  //遍历所以的控件
     {
                    if (control is Button)    //判断是否是按钮控件
...

«1»