示例#1
0
 public ThreadCommand(string commandID,ExecutedThreadEventHandle executed)
 {
     Clear();
     _executed += executed;
     _commandID = commandID;
     _priority = COMMAND_PRIORITY.PRIORITY_NORMAL;
     _state = COMMAND_STATE.STATE_NONE;
 }
示例#2
0
 public ThreadCommand()
 {
     Clear();
     _priority = COMMAND_PRIORITY.PRIORITY_NORMAL;
     _state = COMMAND_STATE.STATE_NONE;
 }