C# TIMER定时激活某个时间/ StopWatch来计算模块计算时间
时间:2010-08-21 来源:_Amo.Jry
启动以后自动将一个Timer激活,在Timer时间到的时候触发this.Close
public partial class Form1 : Form
{
Timer 我的计时器 = new Timer();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
我的计时器.Interval = 10000;//设置时间为10秒
我的计时器.Tick += new EventHandler(我的计时器_Tick);
我的计时器.Start();//窗体加载时这个计时器自动启动
}
//计时器计时事件
void 我的计时器_Tick(object sender, EventArgs e)
{
this.Close();//时间到了以后就触发窗体关闭事件了
}
}
用stopwatch可以来计算程序模块运行的时间..
using System.Diagnostics;
Stopwatch tm = new Stopwatch();
tm.Start();
某个模块...
tm.Stop();
MessageBox.Show(tm.Elapsed.Milliseconds.ToString(), "training done");