当前位置: 代码迷 >> .NET组件控件 >> 怎么遍历Winform中的组件(Component)
  详细解决方案

怎么遍历Winform中的组件(Component)

热度:7340   发布时间:2013-02-25 00:00:00.0
如何遍历Winform中的组件(Component)?
在Winform中能通过Controls遍历每个控件,但Component就没有,请问如何遍历每个Component?谢谢!

------解决方案--------------------------------------------------------
foreach(System.ComponentModel.Component com in this.components.Components)
{
If(com is Timer)
{
Console.WriteLine( "Is Timer ");
}
}
  相关解决方案