示例#1
0
        public void EndGroupCommand()
        {
            CommandSet temp = commandSet;

            temp.EndAdd();
            commandSet = null;
            if (temp.CommandCount > 0)
            {
                donecommand.Push(temp);
                OnCommandChange(temp.CommandType);
            }
        }
示例#2
0
 public void StartGroupCommand()
 {
     commandSet = new CommandSet();
 }