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

C# winform checkbox 的遍历,该如何处理

2012-01-28 
C# winform checkbox 的遍历我拖了很多个checkbox 在窗体,用什么方法遍历这些控件?谢谢。[解决办法]C# code

C# winform checkbox 的遍历
我拖了很多个checkbox 在窗体,用什么方法遍历这些控件?谢谢。

[解决办法]

C# code
            foreach(Control ctl in this.Controls)            {                CheckBox ck = ctl as CheckBox;                if (ck != null)                    ck.Checked = true;            }
[解决办法]
探讨
C# code

foreach(Control ctl in this.Controls)
{
CheckBox ck = ctl as CheckBox;
if (ck != null)
ck.Checked = true;
……

热点排行