17 references to NotifyCollectionChangedEventArgs
Microsoft.Maui.Controls (1)
Internals\NotifyCollectionChangedEventArgsEx.cs (1)
61
public NotifyCollectionChangedEventArgsEx(int count, NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex) :
base
(action, changedItem, index, oldIndex)
PresentationFramework (15)
MS\Internal\Data\CollectionViewGroupRoot.cs (1)
644
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, item, newIndex, oldIndex));
MS\Internal\Data\CompositeCollectionView.cs (1)
772
args = new
NotifyCollectionChangedEventArgs
(args.Action, args.OldItems[0], flatNewIndex, flatOldIndex);
MS\Internal\Data\LiveShapingTree.cs (1)
69
RaiseMoveEvent(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move,
System\Windows\Controls\GridViewColumnCollectionChangedEventArgs.cs (1)
71
:
base
(action, changedItem, index, oldIndex)
System\Windows\Controls\MultipleCopiesCollection.cs (1)
193
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, CopiedItem, newIndex, oldIndex));
System\Windows\Data\BindingListCollectionView.cs (4)
481
args = new
NotifyCollectionChangedEventArgs
(
503
args = new
NotifyCollectionChangedEventArgs
(
785
result = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, newItem, toIndex, fromIndex);
1973
forwardedArgs = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, item, index+delta, args.OldIndex+delta);
System\Windows\Data\ListCollectionView.cs (6)
594
args = new
NotifyCollectionChangedEventArgs
(
616
args = new
NotifyCollectionChangedEventArgs
(
889
new
NotifyCollectionChangedEventArgs
(
1256
new
NotifyCollectionChangedEventArgs
(
2035
args = new
NotifyCollectionChangedEventArgs
(effectiveAction, args.OldItems[0], adjustedNewIndex, adjustedOldIndex);
3112
new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move,
System.ObjectModel (1)
System\Collections\ObjectModel\ObservableCollection.cs (1)
260
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(action, item, index, oldIndex));