Implemented interface member:
event
CollectionChanged
System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged
1 override of CollectionChanged
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemCollectionImpl.cs (1)
59public override event NotifyCollectionChangedEventHandler CollectionChanged;
15 references to CollectionChanged
System.Data (15)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValueCollection.cs (1)
56collection.CollectionChanged += new NotifyCollectionChangedEventHandler(OnUnderlyingCollectionChanged);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
63ItemsCollectionModelItemCollection.CollectionChanged += new NotifyCollectionChangedEventHandler(itemsCollection_CollectionChanged);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (4)
519oldItem.Properties[Members].Collection.CollectionChanged -= designer.OnArgumentCollectionChanged; 523newItem.Properties[Members].Collection.CollectionChanged += designer.OnArgumentCollectionChanged; 776this.ReflectedObject.Properties["Attributes"].Collection.CollectionChanged += new NotifyCollectionChangedEventHandler(OnAttributesChanged); 790this.ReflectedObject.Properties["Attributes"].Collection.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnAttributesChanged);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (2)
100this.importsModelItem.CollectionChanged -= this.OnImportsModelItemCollectionChanged; 450this.importsModelItem.CollectionChanged += this.OnImportsModelItemCollectionChanged;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (2)
246p.Properties["Variables"].Collection.CollectionChanged -= OnVariableCollectionChanged; 266p.Properties["Variables"].Collection.CollectionChanged += OnVariableCollectionChanged;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (5)
212oldItemsCollection.CollectionChanged -= this.OnCollectionChanged; 217newItemsCollection.CollectionChanged += this.OnCollectionChanged; 345this.Items.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnCollectionChanged); 346this.Items.CollectionChanged += new NotifyCollectionChangedEventHandler(OnCollectionChanged); 370this.Items.CollectionChanged -= new NotifyCollectionChangedEventHandler(OnCollectionChanged);