public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Timer t = new Timer();
t.Interval = 1000;
t.Tick += T;//注册时钟事件
t.Enabled = true;
}
int n = 10000;
//时钟事件引发重绘
private void T(object o, EventArgs e)
{
n--;
//显示在标题中
Text = n.ToString();
}
}
计时器
定时器 就可以