如何遍历winform窗体中的所有控件

2024-12-11 15:41:04
推荐回答(1个)
回答1:

要用递归啊,楼上都是来混分的 //伪代码如下 void EnumControls(Control container) { foreach(var c in container.Controls) { //c is the child control here EnumControls(c); } } //调用 EnumControls(this);