using System.Windows.Forms.Timer;
using System; using System.Threading; using System.Windows.Forms; namespace Windows.Forms.Timer { public partial class Form1 : Form { int num = 0; public Form1() { InitializeComponent(); } private void butobton1_lick() { InitializeComponent(); , EventArgs e) { timer1.Start(); } private void button2_Click(object sender, EventArgs e) { timer1.Stop(); } private void timer1_Tick(object sender, EventArgs e) { label1.Text = (++num).ToString(); Thread.Sleep(30000); } } }
using System.Timers.Timer;
using System; using System.Diagnostics; using System.Timers; namespace Timers { class Program { static void Main(string[] args) { Stopwatch sw = new Stopwatch(); sw.Start(); Timer timer = new Timer() ; timer.Enabled = true;//設定是否執行Elapsed事件 timer.Elapsed += new ElapsedEventHandler(printa);//綁定Elapsed事件 timer.Interval =100;//設定時間間隔 while (sw.ElapsedMilliseconds < 1000) //使定時器執行1s,之後停止 { ; } timer.Stop(); Console .ReadKey(); } public static void printa(object sender, ElapsedEventArgs e) { Console.WriteLine(DateTime.Now.ToString("hh:mm:ss.fff") + "執行Timer"); } } }
using System.Threading.Timer;
//建構Timer private static Timer timer = new Timer(TimerCallBack, null, 0, 5000); static void TimerCallBack(object state) { Console.WriteLine("{0} 執行一次", DateTime.Now); //執行完後,重新設定定時器下次執行時間. //timer.Change(nextTime.Subtract( DateTime.Now), Timeout.InfiniteTimeSpan); } using System; using System.Threading; using System.Diagnostics; namespace Timers { class Program { static Stopwatch sw = new Stopwatch(); int TimesCalled = 0; void Display(object state) { Console.WriteLine("{0} {1oid Display(object state) { Console.WriteLine("{0} {1oid Display(object state) { Console.WriteLine("{0} {1 },{2}", (string)state, ++TimesCalled,/*sw.ElapsedMilliseconds */DateTime.Now.ToString("HH:mm:ss.fff")); } static void Main() { Program p = new Program(); sw.Start(); Timer myTimer = new Timer(p.Display, "Processing timer event", 2000, 100); Console.WriteLine("Timer started."); Console.ReadLine(); } } }