Exemple #1
0
 public void Do(UndoCommand undoCommand)
 {
     undoCommand.Do();
     this._undoStack.Push(undoCommand);
     this._redoStack.Clear();
     this.RaiseProperties();
 }