Exemplo n.º 1
0
 public static void Redo()
 {
     if (UndoStack.Count() > 0)
     {
         ListOfFigures.Add(UndoStack.Pop());
     }
 }