c# winform 遍历控件名称
时间: 2023-07-28 18:09:46 浏览: 198
C#winform控件
你可以使用以下代码来遍历 WinForm 中的所有控件名称:
```csharp
private void TraverseControls(Control control)
{
foreach (Control childControl in control.Controls)
{
TraverseControls(childControl);
Console.WriteLine(childControl.Name);
}
}
```
然后,你可以调用该方法来遍历整个窗体中的所有控件:
```csharp
TraverseControls(this);
```
这将会在控制台中输出窗体中所有控件的名称。
阅读全文