我是编程的初学者。这是我的代码:
private void timer1_Tick(object sender, EventArgs e)
{
sec++;
textBoxSeconds.Text = sec.ToString();
if (sec > 59)
{
sec = 0;
textBoxSeconds.Text = sec.ToString();
min++;
textBoxMinutes.Text = min.ToString();
}
}
时间过得太快;/有时会停几秒钟。希望有人可以帮助我:) *编辑// * 感谢您的帮助:) 它有效,但我仍然有一个我之前没有提到的问题。时间有时会停止 1-2 秒,我知道为什么。也许是因为一些循环?