poping舞曲 最后有机器人倒计时的

来源:百度知道 编辑:UC知道 时间:2024/06/07 23:34:32

不懂 倒计时有代码奉上
int i = 7200; //就是你要到记的时间,以秒为单位
private void timer1_Tick(object sender, EventArgs e)
{
this.label1.Text = (i --).ToString();
}
label1 为标签;timer控件enlable属性设置为true

学习ing