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