方法一: //一旦点击该按钮则每隔2s运行以下程序 int timer = 0; while (timer<3600) { //你的代码 Thread.Sleep(2000); timer = timer + 2; } 方法二: