关于Winform三种Timer的总结

来源:互联网 发布:mac系统怎么安装ae插件 编辑:程序博客网 时间:2024/04/30 11:59

Timer实例代码。
 

复制代码代码示例:
using System;
using System.Threading;
 
class TimerExample
{
    static void Main()
    {
        AutoResetEvent autoEvent     = new AutoResetEvent(false);
        StatusChecker  statusChecker = new StatusChecker(10);
 
        // Create the delegate that invokes methods for the timer.
        TimerCallback timerDelegate =
            new TimerCallback(statusChecker.CheckStatus);
 
        TimeSpan delayTime = new TimeSpan(0, 0, 1);
        TimeSpan intervalTime = new TimeSpan(0, 0, 0, 0, 250);
 
        // Create a timer that signals the delegate to invoke
        // CheckStatus after one second, and every 1/4 second
        // thereafter.
        Console.WriteLine("{0} Creating timer.n",
            DateTime.Now.ToString("h:mm:ss.fff"));
        Timer stateTimer = new Timer(
            timerDelegate, autoEvent, delayTime, intervalTime);
 
        // When autoEvent signals, change the period to every
        // 1/2 second.
        autoEvent.WaitOne(5000, false);
        stateTimer.Change(new TimeSpan(0),
            intervalTime + intervalTime);
        Console.WriteLine("nChanging period.n");
 
        // When autoEvent signals the second time, dispose of
        // the timer.
        autoEvent.WaitOne(5000, false);
        stateTimer.Dispose();
        Console.WriteLine("nDestroying timer.");
    }
}
 
class StatusChecker
{
    int invokeCount, maxCount;
 
    public StatusChecker(int count)
    {
        invokeCount  = 0;
        maxCount = count;
    }
 
    // This method is called by the timer delegate.
    public void CheckStatus(Object stateInfo)
    {
        AutoResetEvent autoEvent = (AutoResetEvent)stateInfo;
        Console.WriteLine("{0} Checking status {1,2}.",
            DateTime.Now.ToString("h:mm:ss.fff"),
            (++invokeCount).ToString());
 
        if(invokeCount == maxCount)
        {
            // Reset the counter and signal Main.
            invokeCount  = 0;
            autoEvent.Set();
        }
    }
}

附,C#中的Timer

C#中timer类 在C#里关于定时器类就有3个
1.定义在System.Windows.Forms里
2.定义在System.Threading.Timer类里
3.定义在System.Timers.Timer类里

System.Windows.Forms.Timer是应用于WinForm中的,它是通过Windows消息机制实现的,类似于VB或Delphi中的Timer控件,内部使用API SetTimer实现的。它的主要缺点是计时不精确,而且必须有消息循环,Console Application(控制台应用程序)无法使用。

System.Timers.Timer和System.Threading.Timer非常类似,它们是通过.NET Thread Pool实现的,轻量,计时精确,对应用程序、消息没有特别的要求。System.Timers.Timer还可以应用于WinForm,完全取代上面的Timer控件。它们的缺点是不支持直接的拖放,需要手工编码。

示例:
使用System.Timers.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("OK!");
}

Form中的应用起来就更简单了。
使用Timer类可以定时触发你所定义的方法。
下面介绍下使用Timer类的具体步骤吧。

using System.Threading;
using System.Timers;

1、创建计时器的新实例:
 

System.Windows.Form.Timer aTimer = new System.Windows.Form.Timer();

2、指定事件处理程序:
 

aTimer.Tick += new EventHandler(OnTimer);

3、指定引发事件的频率:
 

aTimer.Interval = 1000;

4、启用组件:
 

aTimer.Enabled = true;

5、处理事件:
 

public static void OnTimer(Object source, EventArgs e) {
      Console.WriteLine("Hello World!");
}

请牢记以上步骤,在实际的开发中,灵活应用,定可快速掌握定时器控件 Timer的用法。
脚本学堂,祝大家学习进步

0 0