加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

【转】使用C#的Timer控件来实现定时触发事件

(2014-04-09 20:49:36)
分类: 高级语言编程篇

【转】使用C#Timer控件来实现定时触发事件

使用C#Timer控件来实现定时触发事件,其主要参数如下:

 

Timer.Enabled 属性用于设置是否启用定时器

 

Timer.Interval 属性,事件的间隔,单位毫秒

 

Timer.Elapsed 事件,达到间隔时发生

 

示例:

 

 

using System;  

 

using System.Collections.Generic;  

 

using System.Linq;  

 

using System.Text;  

 

using System.Timers;  

 

 

 

namespace ConsoleApplication1  

 

 

 

    class Program  

 

    

 

        static void Main(string[] args)  

 

        

 

            System.Timers.Timer aTimer = new System.Timers.Timer();  

 

            aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);  

 

            // Set the Interval to 5 seconds.  

 

            aTimer.Interval = 5000;  

 

            aTimer.Enabled = true;  

 

 

 

            Console.WriteLine("Press \'q\' to quit the sample.");  

 

            while (Console.Read() != 'q') ;   

 

        

 

 

 

        private static void OnTimedEvent(object source, ElapsedEventArgs e)  

 

        

 

            Console.WriteLine("Hello World!");  

 

         

 

    

 

 

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有