程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> c#停頓1秒的方法

c#停頓1秒的方法

編輯:關於C#
 

同學問我怎麼間隔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();
}
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved