9 references to NotifyCollectionChangedEventArgs
PresentationCore (1)
Core\CSharp\System\Windows\FreezableCollection.cs (1)
801args = new NotifyCollectionChangedEventArgs(action, newValue, oldValue, newIndex);
PresentationFramework (7)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
159OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace, value, originalItem, index));
src\Framework\MS\Internal\Data\CompositeCollectionView.cs (1)
783args = new NotifyCollectionChangedEventArgs(args.Action, args.NewItems[0], args.OldItems[0], flatOldIndex);
src\Framework\System\Windows\Controls\DataGridColumnHeaderCollection.cs (1)
54NotifyCollectionChangedEventArgs args = new NotifyCollectionChangedEventArgs(
src\Framework\System\Windows\Controls\GridViewColumnCollectionChangedEventArgs.cs (1)
63: base(action, newItem, oldItem, index)
src\Framework\System\Windows\Controls\MultipleCopiesCollection.cs (1)
220OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace, newItem, oldItem, index));
src\Framework\System\Windows\Data\CompositeCollection.cs (1)
538CollectionChanged(this, new NotifyCollectionChangedEventArgs(action, newItem, oldItem, index));
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
2005args = new NotifyCollectionChangedEventArgs(effectiveAction, args.NewItems[0], args.OldItems[0], adjustedOldIndex);
System (1)
compmod\system\collections\objectmodel\observablecollection.cs (1)
365OnCollectionChanged(new NotifyCollectionChangedEventArgs(action, newItem, oldItem, index));