コード例 #1
0
ファイル: ConsoleCommands.cs プロジェクト: dasvex/engpopup
 public CommandTimer(TimerControl timer  )
     : base(".timer",@"set / get timer elapsed (sec)")
 {
     this.Timer = timer;
 }
コード例 #2
0
ファイル: ConsoleCommands.cs プロジェクト: dasvex/engpopup
 public CommandStart(TimerControl timer)
     : base(".start","run program")
 {
     this.Timer = timer;
 }
コード例 #3
0
ファイル: ConsoleCommands.cs プロジェクト: dasvex/engpopup
 public CommandStop(TimerControl timer)
     : base(".stop","program pause")
 {
     this.Timer = timer;
 }
コード例 #4
0
ファイル: ConsoleCommands.cs プロジェクト: dasvex/engpopup
 public CommandCallPopup(TimerControl timer)
     : base(".callpopup","show next popup window")
 {
     this.Timer = timer;
 }