System.Threading.Timer is not firing

本文关键字:not firing is Timer Threading System | 更新日期: 2023-09-27 18:09:39

在DLL中,我有一个使用System.Threading.Timer的类,以便定期执行特定方法。我在我的WINFORM应用程序中使用这个DLL,但是计时器没有触发。

它只执行一次,即使我保持对这个定时器的引用。

任何关于为什么这个定时器不工作的想法?

System.Threading.Timer is not firing

您需要将AutoReset属性设置为true,或者每次它运行时再次调用Start()