延遲時間WPF C#與C#都有用到。計時器WPF C#工具箱沒有元件,C#有元件。
所以我放在一起寫....太相同的名稱了。
如果想要分開看就到黯語生活討論區的官網看
http://devildemon.mooo.com/
延遲時間
引入用法:using System.Threading;
語法:
Thread.Sleep(50000);//為毫秒
Thread.Sleep(50000);//為毫秒
補:1000毫秒為1秒,60000為1分鐘
[WPF C#] 計時器
引入元件:
using System.Windows.Threading;
using System.Windows.Threading;
新增元件:
timer1 = new DispatcherTimer();
timer1 = new DispatcherTimer();
寫法:
//註冊計時器的Tick是給那一項處理
timer1.Tick += new EventHandler(timer1_Tick);
//註冊計時器的Interval為多久一次
timer1.Interval = TimeSpan.FromSeconds(3000);//毫秒數 ; 或用 timer1.Interval = new TimeSpan(0, 0, 1);
timer1.Tick += new EventHandler(timer1_Tick);
//註冊計時器的Interval為多久一次
timer1.Interval = TimeSpan.FromSeconds(3000);//毫秒數 ; 或用 timer1.Interval = new TimeSpan(0, 0, 1);
//開始計時
timer1.Start();
timer1.Start();
//停止計時
timer1.Stop();
timer1.Stop();
處理項目:
private void timer1_Tick(object sender, EventArgs e)
{
//每次時間到想做的事情
}
private void timer1_Tick(object sender, EventArgs e)
{
//每次時間到想做的事情
}
沒有留言:
張貼留言
影片的問題請留在影片的留言區裡。
部落格不會另外通知給我,所以很難發現你有留言。