c# timer 的一个简单问题
需求是一个btn点击后触发一个页面抓取动作。每10秒抓取一下。
private void btnStart_Click(object sender, EventArgs e)
{
string sourceCode = GetHtml("被抓取网址");
}
计时器那里的代码怎么写?谢谢。 展开
第一步:在工具箱里拖拽一个timer控件到你的窗体;
第二步:双击你的timer控件或者在timer控件的事件列表里双击timer的click事件在后台生成timer事件。
第二步:在调用的函数也就是你的private void btnStart_Click(object sender, EventArgs e)这个事件里调用timer事件,
private void btnStart_Click(object sender, EventArgs e)
{
timer1.Interval = 10000;//这句是timer事件10秒触发一次,Interval 的单位是毫秒
timer1.Start();//启动定时器。
}
private void timer1_Tick(object sender, EventArgs e, string asd)
{
string sourceCode = GetHtml("被抓取网址");
}
完成了!!!!不谢!
顺便多说两句,对于timer的启动和关闭有两种方式:
第一种: timer1.Start()开启
timer1.Stop()关闭
第二种: timer1.Enabled = true 开启
timer1.Enabled = false 关闭
在使用的时候要么都用第一种,要么都用第二种,不要混着用!!!!!
timer控件的官方命名是线程计数器,就是我们理解的定时器,每隔多少毫秒执行一次,
timer1.Interval = 10000;意思是设置定时器每隔10000毫秒(也就是10秒)运行一次,
这样你在 private void timer1_Tick(object sender, EventArgs e, string asd)的事件里写的代码每隔10秒就能被执行一次,直到程序关闭或手动关闭定时器。
public Form1()
{
InitializeComponent();
timer1.Enabled = false;
timer1.Interval = 10000; //设置间隔,我这里设置的是每十秒执行一次
}
private void timer1_Tick(object sender, EventArgs e)
{
string sourceCode = GetHtml("被抓取网址");
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Enabled = true; //启动timer
}
这样应该是可以的:
private void btnStart_Click(object sender, EventArgs e)
{
Run();
}
System.Threading.Timer tt = null;
public void Run()
{
if (tt == null)
tt = new System.Threading.Timer(executeRun, null, 0, 10000);
}
public void executeRun(object obj)
{
this.BeginInvoke(new Action(() => { string sourceCode = GetHtml("被抓取网址");}));
}
试试吧。