4 writes to IsUndoRedoInProgress
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\UndoEngine.cs (4)
86this.IsUndoRedoInProgress = true; 88this.IsUndoRedoInProgress = false; 98this.IsUndoRedoInProgress = true; 100this.IsUndoRedoInProgress = false;
8 references to IsUndoRedoInProgress
System.Activities.Presentation (8)
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\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\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;