1 instantiation of ModelItemDictionaryImpl
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (1)
139ModelItemDictionary modelItem = new ModelItemDictionaryImpl(this, instance.GetType(), instance, parent);
11 references to ModelItemDictionaryImpl
System.Data (11)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DictionaryItemsCollection.cs (1)
16public ModelItemDictionaryImpl ModelDictionary { get; set; }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryChange.cs (2)
52((ModelItemDictionaryImpl)this.Dictionary).RemoveCore(this.Key); 76((ModelItemDictionaryImpl)this.Dictionary).AddCore(this.Key, this.Value);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryEditChange.cs (1)
42((ModelItemDictionaryImpl)this.Dictionary).EditCore(this.Key, this.NewValue);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\IItemsCollection.cs (1)
16ModelItemDictionaryImpl ModelDictionary { get; set; }
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (6)
309internal void DictionaryClear(ModelItemDictionaryImpl modelDictionary) 325internal void DictionaryEdit(ModelItemDictionaryImpl dataModelItemDictionary, ModelItem key, ModelItem newValue, ModelItem oldValue) 340internal void DictionaryAdd(ModelItemDictionaryImpl dataModelItemDictionary, ModelItem key, ModelItem value) 375internal void DictionaryRemove(ModelItemDictionaryImpl dataModelItemDictionary, ModelItem key) 1020ModelItemDictionaryImpl dictionary = vertex as ModelItemDictionaryImpl;