同學問我怎麼間隔1秒執行一段代碼,其實停頓1s很簡單,就是把時間計時器interval設成1000ms, 你在tick事件中使用timer.start(); 開始計時,處理事件 timer.stop();停止計時,就會1s中觸發一次了。
下面是一段測試代碼。一看就明白了。
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 timertest
{
public partial class Form1 : Form
{
int num = 10;
public Form1()
{
InitializeComponent();
this.timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
if (num > 0)
{
num--;
this.label1.Text = num.ToString();
}
else
{
this.timer1.Stop();
}
}
private void Form1_Load(object sender, EventArgs e)
{
timer1.Interval = 1000;
this.label1.Text = num.ToString();
}
}
}