关于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定时器的用法。
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Timers;using System.Runtime.InteropServices;using System.Threading;namespace Timer001{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } //实例化Timer类 System.Timers.Timer aTimer = new System.Timers.Timer(); private void button1_Click(object sender, EventArgs e) { this.SetTimerParam(); } private void test(object source, System.Timers.ElapsedEventArgs e) { MessageBox.Show(DateTime.Now.ToString()); } public void SetTimerParam() { //到时间的时候执行事件 aTimer.Elapsed += new ElapsedEventHandler(test); aTimer.Interval = 1000; aTimer.AutoReset = true;//执行一次 false,一直执行true //是否执行System.Timers.Timer.Elapsed事件 aTimer.Enabled = true; } }}
实现的效果是:每秒弹出系统当前时间,如下图:

以上就是C# Timer 定时器应用的内容,更多相关内容请关注PHP中文网(www.php.cn)!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1432300.html
微信扫一扫
支付宝扫一扫