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