新手请教各位大侠:在C#winfrom程序,自定义控件中,怎么遍历groupbox中的控件(比如多个按钮)?

特别强调各位大侠们,是在用户控件中遍历谢谢。
2024-11-22 08:10:18
推荐回答(3个)
回答1:

foreach (System.Windows.Forms.Control control in this.groupBox1.Controls)//遍历groupBox1上的所有控件
{
if (control is System.Windows.Forms.Button) //如果是button
{
//////////////////////////////
}
}

回答2:

int buttonNumber;
foreach (Control c in groupbox.Controls )
{
if (c is Button)
buttonNumber++;
}
不知道这样行不行………

回答3:

foreach(Control var in groupbox.Controls)
{

}