6 instantiations of ModelChangeInfoImpl
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Services\ModelChangeInfoImpl.cs (6)
62return new ModelChangeInfoImpl(ModelChangeType.PropertyChanged, subject, propertyName, null, oldValue, newValue); 67return new ModelChangeInfoImpl(ModelChangeType.CollectionItemAdded, subject, null, null, null, item); 72return new ModelChangeInfoImpl(ModelChangeType.CollectionItemRemoved, subject, null, null, null, item); 77return new ModelChangeInfoImpl(ModelChangeType.DictionaryKeyValueAdded, subject, null, key, null, value); 82return new ModelChangeInfoImpl(ModelChangeType.DictionaryKeyValueRemoved, subject, null, key, null, value); 87return new ModelChangeInfoImpl(ModelChangeType.DictionaryValueChanged, subject, null, key, oldValue, newValue);
12 references to ModelChangeInfoImpl
System.Activities.Presentation (12)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Services\ModelChangeInfoImpl.cs (6)
60public static ModelChangeInfoImpl CreatePropertyChanged(ModelItem subject, string propertyName, ModelItem oldValue, ModelItem newValue) 65public static ModelChangeInfoImpl CreateCollectionItemAdded(ModelItem subject, ModelItem item) 70public static ModelChangeInfoImpl CreateCollectionItemRemoved(ModelItem subject, ModelItem item) 75public static ModelChangeInfoImpl CreateDictionaryKeyValueAdded(ModelItem subject, ModelItem key, ModelItem value) 80public static ModelChangeInfoImpl CreateDictionaryKeyValueRemoved(ModelItem subject, ModelItem key, ModelItem value) 85public static ModelChangeInfoImpl CreateDictionaryValueChanged(ModelItem subject, ModelItem key, ModelItem oldValue, ModelItem newValue)
System.Activities.Presentation\System\Activities\Presentation\Model\CollectionChange.cs (2)
64ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateCollectionItemRemoved(this.Collection, this.Item); 84ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateCollectionItemAdded(this.Collection, this.Item);
System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryChange.cs (2)
54ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateDictionaryKeyValueRemoved(this.Dictionary, this.Key, this.Value); 78ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateDictionaryKeyValueAdded(this.Dictionary, this.Key, this.Value);
System.Activities.Presentation\System\Activities\Presentation\Model\DictionaryEditChange.cs (1)
44ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreateDictionaryValueChanged(this.Dictionary, this.Key, this.OldValue, this.NewValue);
System.Activities.Presentation\System\Activities\Presentation\Model\PropertyChange.cs (1)
47ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreatePropertyChanged(this.Owner, this.PropertyName, this.OldValue, this.NewValue);