Timer计时器

Posted 爱编程1314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Timer计时器相关的知识,希望对你有一定的参考价值。

public Form2()
{
   InitializeComponent();
   m_Timer();
}
void m_Timer()
{
   System.Timers.Timer t = new System.Timers.Timer(10000);   //实例化Timer类,设置间隔时间为10000毫秒;   
   t.Elapsed += new System.Timers.ElapsedEventHandler(theout); //到达时间的时候执行事件;   
   t.AutoReset = true;   //设置是执行一次(false)还是一直执行(true);   
   t.Enabled = true;     //是否执行System.Timers.Timer.Elapsed事件; 
}
public void theout(object source, System.Timers.ElapsedEventArgs e)   
{   
   MessageBox.Show("我在测试哦!O_0");   
}  

 

以上是关于Timer计时器的主要内容,如果未能解决你的问题,请参考以下文章

timer计时器的问题

使用Timer组件制作计时器

MFC Timer定时器

求 JAVA 使用 Thread 和 Timer 类来做倒计时的程序代码

如何使用 Timer 类调用方法,做某事,重置计时器,重复?

自己定义定时器(Timer)