示例#1
0
 public TimerItem(Nullable <DateTime> tickTime, string tip, TimerItemType itemType, string commandText)
 {
     this._TickTime = tickTime;
     this._tip      = tip;
     this._type     = itemType;
     this._command  = commandText;
 }
示例#2
0
 public TimerItem(Nullable <DateTime> tickTime, string tip, TimerItemType itemType)
 {
     this._TickTime = tickTime;
     this._tip      = tip;
     this._type     = itemType;
 }