1 instantiation of UndoEngine
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
129undoEngine = new UndoEngine(context);
23 references to UndoEngine
System.Activities.Presentation (23)
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (1)
551return null != this.Context && this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress;
System.Activities.Presentation\System\Activities\Presentation\Model\FakeModelPropertyImpl.cs (1)
170if (null != context && !context.Services.GetService<UndoEngine>().IsUndoRedoInProgress)
System.Activities.Presentation\System\Activities\Presentation\Model\ImmediateEditingScope.cs (2)
15private UndoEngine.Bookmark undoEngineBookmark; 17public ImmediateEditingScope(ModelTreeManager modelTreeManager, UndoEngine.Bookmark undoEngineBookmark)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemHelper.cs (1)
15if (shouldApplyChangesImmediately && modelTreeManager.Context.Services.GetService<UndoEngine>().IsBookmarkInPlace)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (4)
680return this.editingScopes.Count == 0 && !this.Context.Services.GetService<UndoEngine>().IsBookmarkInPlace; 694this.immediateEditingScope = context.Services.GetRequiredService<UndoEngine>().CreateImmediateEditingScope(description, this); 796UndoEngine undoEngine = this.Context.Services.GetService<UndoEngine>();
System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (2)
214UndoEngine undoEngine; 219internal Bookmark(UndoEngine undoEngine, BookmarkUndoUnit undoUnit)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (2)
355bool isUndoRedoInProgress = this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress; 389bool isUndoRedoInProgress = this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress;
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (2)
974this.Context.Services.GetService<UndoEngine>().Undo(); 986this.Context.Services.GetService<UndoEngine>().Redo();
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (1)
466if ((!this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress) && (!this.isSelectionChangedInternally))
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (3)
349if (this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress) 412var isUndoRedoInProgress = this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress; 471bool isUndoRedoInProgress = this.Context.Services.GetService<UndoEngine>().IsUndoRedoInProgress;
System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewStateService.cs (2)
27UndoEngine UndoEngine 31return this.context.Services.GetService<UndoEngine>();
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (2)
57UndoEngine undoEngine; 130this.context.Services.Publish(typeof(UndoEngine), undoEngine);