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