1 write to modelService
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (1)
212this.modelService = new ModelServiceImpl(this);
19 references to modelService
System.Activities.Presentation (19)
System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryChange.cs (6)
58this.ModelTreeManager.modelService.OnModelItemRemoved(this.Key, changeInfo); 64this.ModelTreeManager.modelService.OnModelItemRemoved(this.Value, changeInfo); 70this.ModelTreeManager.modelService.EmitModelChangeInfo(changeInfo); 82this.ModelTreeManager.modelService.OnModelItemAdded(this.Key, changeInfo); 88this.ModelTreeManager.modelService.OnModelItemAdded(this.Value, changeInfo); 94this.ModelTreeManager.modelService.EmitModelChangeInfo(changeInfo);
System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryEditChange.cs (2)
48this.ModelTreeManager.modelService.OnModelItemRemoved(this.OldValue, changeInfo); 53this.ModelTreeManager.modelService.OnModelItemAdded(this.NewValue, changeInfo);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (11)
210if (this.modelService == null) 213this.context.Services.Publish<ModelService>(modelService); 260Fx.Assert(this.modelService != null, "modelService should not be null"); 271this.modelService.OnModelItemsRemoved(removedItems); 276this.modelService.OnModelItemAdded(item, changeInfo); 306this.modelService.OnModelItemRemoved(item, changeInfo); 312Fx.Assert(this.modelService != null, "modelService should not be null"); 328Fx.Assert(this.modelService != null, "modelService should not be null"); 343Fx.Assert(this.modelService != null, "modelService should not be null"); 378Fx.Assert(this.modelService != null, "modelService should not be null"); 715modelService.OnModelPropertyChanged(dataModelProperty, changeInfo);