1 type derived from ModelChangeInfo
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Services\ModelChangeInfoImpl.cs (1)
11internal class ModelChangeInfoImpl : ModelChangeInfo
18 references to ModelChangeInfo
System.Activities.Presentation (18)
System.Activities.Presentation\System\Activities\Presentation\Base\Interaction\Services\ModelChangedEventArgs.cs (1)
46public virtual ModelChangeInfo ModelChangeInfo
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\ModelChangedEventArgsImpl.cs (3)
17ModelChangeInfo modelChangeInfo; 24public ModelChangedEventArgsImpl(List<ModelItem> itemsAdded, List<ModelItem> itemsRemoved, List<ModelProperty> propertiesChanged, ModelChangeInfo modelChangeInfo) 59public override ModelChangeInfo ModelChangeInfo
System.Activities.Presentation\System\Activities\Presentation\Model\ModelServiceImpl.cs (4)
68internal void OnModelItemAdded(ModelItem modelItem, ModelChangeInfo changeInfo) 81internal void OnModelItemRemoved(ModelItem modelItem, ModelChangeInfo changInfo) 93internal void EmitModelChangeInfo(ModelChangeInfo changInfo) 116internal void OnModelPropertyChanged(ModelProperty property, ModelChangeInfo changeInfo)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (3)
274internal void NotifyCollectionInsert(ModelItem item, ModelChangeInfo changeInfo) 304internal void NotifyCollectionRemove(ModelItem item, ModelChangeInfo changeInfo) 713internal void NotifyPropertyChange(ModelPropertyImpl dataModelProperty, ModelChangeInfo changeInfo)
System.Activities.Presentation\System\Activities\Presentation\Model\PropertyChange.cs (1)
47ModelChangeInfo changeInfo = ModelChangeInfoImpl.CreatePropertyChanged(this.Owner, this.PropertyName, this.OldValue, this.NewValue);
System.Activities.Presentation\System\Activities\Presentation\View\ActivityTypeDesigner.xaml.cs (1)
108ModelChangeInfo changeInfo = e.ModelChangeInfo;