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

            action.Redo(this);
        }