首页 > 开发 > 综合 > 正文

C#定时器的使用

2024-07-21 02:30:08
字体:
来源:转载
供稿:网友

c#定时器的使用

以下为引用的内容:

timer timer1;
        this.timer1.interval = 1000;
        this.timer1.tick += new system.eventhandler(this.timer1_tick);

        private void timer1_tick(object sender, eventargs e)
        {
            arraylist autotask = new arraylist();           
            autotask.add("8:30:00");
            autotask.add("9:30:00");
            autotask.add("10:30:00");
            autotask.add("11:30:00");

            for (int n = 0; n < 4; n++)
            {
                if (dtauto.tolongtimestring().equals(autotask[n]))
                {
                    messagebox.show("现在时间是" + autotask[n]);
                }
            }
        }

  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表