前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >.NET Timer控件基础用法

.NET Timer控件基础用法

作者头像
用户5760343
发布2022-05-24 17:42:05
6220
发布2022-05-24 17:42:05
举报
文章被收录于专栏:sktjsktj

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

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

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

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

示例:

[csharp] view plain copy

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!");  

        }   

    }  

}  

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2022-05-13,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档