4 instantiations of UndoUnitEventArgs
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (4)
163this.UndoUnitAdded(this, new UndoUnitEventArgs() { UndoUnit = unit }); 171this.UndoCompleted(this, new UndoUnitEventArgs() { UndoUnit = unit }); 179this.RedoCompleted(this, new UndoUnitEventArgs() { UndoUnit = unit }); 187this.UndoUnitCancelled(this, new UndoUnitEventArgs() { UndoUnit = unit });
6 references to UndoUnitEventArgs
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (4)
26public event EventHandler<UndoUnitEventArgs> UndoUnitAdded; 27public event EventHandler<UndoUnitEventArgs> UndoCompleted; 28public event EventHandler<UndoUnitEventArgs> RedoCompleted; 29public event EventHandler<UndoUnitEventArgs> UndoUnitCancelled;
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
131undoEngine.UndoCompleted += new EventHandler<UndoUnitEventArgs>(OnUndoCompleted);
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.Helpers.cs (1)
100void OnUndoCompleted(object sender, UndoUnitEventArgs e)