List<Control> buttonList = new List<Control>();
foreach (Control control in Controls) //遍历所以的控件
{
if (control is Button) //判断是否是按钮控件
{
buttonList.add(control );
}
}
这样你就可以只操作buttonList了。
设置属性的时候,同样要遍历buttonList
for(int i = 0;i < buttonList.Count;i++)
{
Button b = buttonList[i] as Button;
b.Text = "xxxxx"; //等等属性之类的东西
}
07
2012
07
C# 如何在代码中对所有button控件操作啊
发布:郑德才博客 | 分类:学习之路 | 评论:2 | 浏览:
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
评论列表: