当前位置:编程学习 > C#/ASP.NET >>

新手问c#中计算器Timer的问题

怎么用Timer来控制时间啊   我想点击BUTTON1开始计时,1分钟后自动调用BUTTON2_CLICK事件,刚学C#,会的麻烦说下 谢谢 --------------------编程问答-------------------- 计时器
如果是System.Windows.Forms中的Timer,设置其Interval(毫秒数)属性,有一个Tick事件,定时间隔到了就会触发。 --------------------编程问答--------------------

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了
}
--------------------编程问答-------------------- 对了,添加timer1的代码,还差一句:
this.timer1 = new System.Windows.Forms.Timer(this.components);
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,