webform 定时器
在winform中写的定时器代码,写在webform中无法运行。目标: 想在webform中,做一个定时器,时间间隔1000毫秒,重复执行事件。
以下为winform中实验的程序。
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using
namespace WinFormsApp1
{
public partial class Form1 : Form
{
System.Timers.Timer timer = new System.Timers.Timer(); // 实例化
public Form1()
{
InitializeComponent();
}
int a=0;
private void button1_Click(object sender, EventArgs e)
{
Action t = () =>
{
textBox1.Text = a++.ToString();
};
Invoke(t);
}
private void button2_Click(object sender, EventArgs e)
{
timer.Interval = 1000; // 间隔时间
timer.Elapsed += new System.Timers.ElapsedEventHandler(button1_Click); // 到时间后执行
timer.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
timer.Enabled = true;
timer.Start();
}
}
}