首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

c# 怎么在代码中对所有button控件操作啊小弟我想数组,但如何搞

2012-05-13 
c# 如何在代码中对所有button控件操作啊,我想数组,但怎么搞RT[解决办法]C# codeListButton btns new L

c# 如何在代码中对所有button控件操作啊,我想数组,但怎么搞
RT  


[解决办法]

C# code
List<Button> btns = new List<Button>();btns.Add(button1);
[解决办法]
C# code
List<Button> btns = new List<Button>();foreach (Control control in Controls)  {   if (control is Button)     {      btns.Add(control);    }  }
[解决办法]
C# code
            List<Button> btns = new List<Button>();            foreach (Control control in Controls)            {                if (control is Button)                {                    btns.Add(control as Button);                }            } 

热点排行