Timer控件如何获取运行状态
我的窗体中有3个Timer控件,我需要判断它们的状态,如果状态都处于停止状态,我就触发另外的操作。请教如何获取Timer的运行状态?谢谢!
bool state = false; foreach (Timer var in this.Controls) { if (var is Timer) { state = var.Enabled; MessageBox.Show(state.ToString()); } }楼主是不是这样想的。。。。。。理论上可以这么写 但是实际上是遍历不到的
foreach (Component c in this.) { if (c is Timer) { MessageBox.Show("我的"); } }