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

C# 简单的定时器使用

时间:2019-11-29 15:55:08      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:names   button   hand   for   generic   init   forms   public   The   

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
System.Timers.Timer t = new System.Timers.Timer(1000);//实例化Timer类,设置间隔时间为1000毫秒;

t.Elapsed += new System.Timers.ElapsedEventHandler(theout);//到达时间的时候执行事件;

t.AutoReset = true;//设置是执行一次(false)还是一直执行(true);

t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;
}

public void theout(object source, System.Timers.ElapsedEventArgs e)
{

MessageBox.Show("OK!");

}
}
}

C# 简单的定时器使用

标签:names   button   hand   for   generic   init   forms   public   The   

原文地址:https://www.cnblogs.com/huanglg/p/11957912.html

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