private void btnBegin_Click(object sender, EventArgs e)
{
this.timer1.Start()
}
//时间控件事件
private void timer1_Tick(object sender, EventArgs e)
{
this.timer1.Interval++
int num = 0
num = this.timer1.Interval-1000
this.label1.Text = num.ToString()
}
你是想做一个计时器吧?平时写程序的时候,为了测试程序运行时间多长,可以如下这么写:
头文件time.h
int a=clock()//开始计时
int b=clock()//即时结束
int t = b-a //这里t就是相差的时长,按毫秒计算的。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)