winform Timer控件的使用

2021-04-12 02:27

阅读:405

标签:orm   inter   添加   ble   sso   cli   class   object   proc   

private void button1_Click(object sender, EventArgs e){
                    Timer timer1 = new Timer();
                    timer1.Interval = 1000;
                    timer1.Enabled = true;
                    timer1.Tick += new EventHandler(timer1EventProcessor);//添加事件
}    

 private void timer1EventProcessor(object sender, EventArgs e)
        {
            do sth……
        }

 

winform Timer控件的使用

标签:orm   inter   添加   ble   sso   cli   class   object   proc   

原文地址:https://www.cnblogs.com/vichin/p/9018031.html


评论


亲,登录后才可以留言!