新手问c#中计算器Timer的问题
怎么用Timer来控制时间啊 我想点击BUTTON1开始计时,1分钟后自动调用BUTTON2_CLICK事件,刚学C#,会的麻烦说下 谢谢 --------------------编程问答-------------------- 计时器如果是System.Windows.Forms中的Timer,设置其Interval(毫秒数)属性,有一个Tick事件,定时间隔到了就会触发。 --------------------编程问答--------------------
--------------------编程问答-------------------- 对了,添加timer1的代码,还差一句:
System.Windows.Forms.Timer timer1;
this.timer1.Interval = 60000;//一分钟
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
private void button1_Click(object sender, EventArgs e)
{
this.timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
this.timer1.Enabled = false;
//BUTTON2_CLICK事件的内容Copy在这就OK了
}
this.timer1 = new System.Windows.Forms.Timer(this.components);
补充:.NET技术 , C#