1 write to modelTreeManager
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
539modelTreeManager = new ModelTreeManager(this.context);
12 references to modelTreeManager
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (7)
232if (this.modelTreeManager != null && (bool)e.NewValue == false) 540modelTreeManager.Load(instance); 541this.context.Services.Publish(typeof(ModelTreeManager), modelTreeManager); 542viewManager = GetViewManager(this.modelTreeManager.Root); 546modelTreeManager.EditingScopeCompleted += new EventHandler<EditingScopeEventArgs>(OnEditingScopeCompleted); 611if (this.modelTreeManager == null) 626documentPersistenceService.Flush(this.modelTreeManager.Root.GetCurrentValue());
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.Helpers.cs (4)
68return this.modelTreeManager.Root.GetCurrentValue(); 137if (!this.modelTreeManager.RedoUndoInProgress 142undoEngine.AddUndoUnit(new EditingScopeUndoUnit(this.Context, this.modelTreeManager, e.EditingScope)); 153documentPersistenceService.OnModelChanged(this.modelTreeManager.Root.GetCurrentValue());
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.SerializationHelpers.cs (1)
106object rootModelObject = this.modelTreeManager.Root.GetCurrentValue();