Esempio n. 1
0
        public void Undo()
        {
            if (!history.CanUndo)
            {
                return;
            }
            HistoryAction action = history.Undo();

            action.Undo(this);
        }