FocusOn 发表于 2020-6-1 11:10:08

遍历button

求助,如何遍历groupbox中所有的button

dzdasfsdfsdf 发表于 2020-6-8 14:26:19

111

sdgsgdsdg 发表于 2020-6-8 14:28:17

222

CLRSCR 发表于 2020-6-8 14:37:20

遍历控件,判断包含名称类型等即可

//遍历窗体所有控件,
foreach (Control control in this.Controls)
{    //遍历后的操作...
    control.Enabled = false;
}
//遍历个别控件
foreach (Control control in this.panel4.Controls)
{
    control.Enabled = false;
}

dfgdfgdsfg 发表于 2020-6-9 21:00:10

5555
页: [1]
查看完整版本: 遍历button