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

特别强调各位大侠们,是在用户控件中遍历谢谢。
2024年11月22日 08:10
有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)
{

}