Exemplo n.º 1
0
 public Timer(int interval, TimerDlg timerEvent)
 {
     this.Interval    = interval;
     this.count       = true;
     this.timerDlg    = timerEvent;
     this.timerThread = new Thread(new ThreadStart(this.StartTimer));
 }
Exemplo n.º 2
0
 public Timer(int interval, TimerDlg timerEvent)
 {
     this.Interval = interval;
     this.count = true;
     this.timerDlg = timerEvent;
     this.timerThread = new Thread(new ThreadStart(this.StartTimer));
 }