Ejemplo n.º 1
0
        private void PushUndoAction(UVEditUndoAction action, bool clearRedoStack)
        {
            UndoActionRoutedEventArgs args =
                new UndoActionRoutedEventArgs(this, UndoActionEvent, action);

            RaiseEvent(args);
        }
Ejemplo n.º 2
0
 public void PushUndoAction(UVEditUndoAction action, bool clearRedoStack)
 {
     __UndoActions.Push(action);
     if (clearRedoStack)
     {
         __RedoActions.Clear();
     }
 }
Ejemplo n.º 3
0
 public void PushUndoAction(UVEditUndoAction action, bool clearRedoStack)
 {
     __UndoActions.Push(action);
     if (clearRedoStack)
         __RedoActions.Clear();
 }
Ejemplo n.º 4
0
 private void PushUndoAction(UVEditUndoAction action, bool clearRedoStack)
 {
     UndoActionRoutedEventArgs args =
         new UndoActionRoutedEventArgs(this, UndoActionEvent, action);
     RaiseEvent(args);
 }