码迷,mamicode.com
首页 > Windows程序 > 详细

Windows服务时间控件怎么调试

时间:2017-08-16 12:30:02      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:ati   info   service   bsp   windows服务   alt   hand   eal   tin   

 

  写了timer,调试的话在构造函数里面把Elapsed方法写成null,null就可以调试了

 

     public PSJCService()
        {
            InitializeComponent();
            GetuserInfo();
            timer2 = new System.Timers.Timer();
            timer2.Interval = 60000;
            timer2.Elapsed += new System.Timers.ElapsedEventHandler(timer2_Elapsed);
            timer2_Elapsed(null,null);
            timer = new System.Timers.Timer();
            timer.Interval = 1000 * int.Parse(ConfigurationManager.AppSettings["RealTimeInterval"].ToString());
            timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Elapsed);
            timer_Elapsed(null, null);

        }

 

Windows服务时间控件怎么调试

标签:ati   info   service   bsp   windows服务   alt   hand   eal   tin   

原文地址:http://www.cnblogs.com/yunquan/p/7372622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!