Esempio n. 1
0
 public CommandTimer(TimerControl timer  )
     : base(".timer",@"set / get timer elapsed (sec)")
 {
     this.Timer = timer;
 }
Esempio n. 2
0
 public CommandStart(TimerControl timer)
     : base(".start","run program")
 {
     this.Timer = timer;
 }
Esempio n. 3
0
 public CommandStop(TimerControl timer)
     : base(".stop","program pause")
 {
     this.Timer = timer;
 }
Esempio n. 4
0
 public CommandCallPopup(TimerControl timer)
     : base(".callpopup","show next popup window")
 {
     this.Timer = timer;
 }