System.Forms.Timer是通过Windows Message运行的,两个Timer不可能并行。
System.Threading.Timer和System.Timer.Timer在一定程度上是并行的。

解决方案 »

  1.   

    那么主程序的进程和Timer执行的东西,是并行的么?
      

  2.   

    System.Threading.Timer有自己的线程,和主程序的线程当然是并行的。
      

  3.   

    回复人: qqchen79(知秋一叶 [MS MVP]) ( ) 信誉:161  2003-8-5 3:05:22  得分:0 
     
    System.Forms.Timer是通过Windows Message运行的,两个Timer不可能并行。
    System.Threading.Timer和System.Timer.Timer在一定程度上是并行的。
     
      

  4.   

    ??什么System.Forms.Timer,System.Threading.Timer,System.Timer.Timer,
    我就是用的winform上面的一个timer控件,和上面的三个东西有什么关系么?