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)
648
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, item, newIndex, oldIndex));
MS\Internal\Data\CompositeCollectionView.cs (1)
777
args = new
NotifyCollectionChangedEventArgs
(args.Action, args.OldItems[0], flatNewIndex, flatOldIndex);
MS\Internal\Data\LiveShapingTree.cs (1)
68
RaiseMoveEvent(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move,
System\Windows\Controls\GridViewColumnCollectionChangedEventArgs.cs (1)
72
:
base
(action, changedItem, index, oldIndex)
System\Windows\Controls\MultipleCopiesCollection.cs (1)
194
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, CopiedItem, newIndex, oldIndex));
System\Windows\Data\BindingListCollectionView.cs (4)
482
args = new
NotifyCollectionChangedEventArgs
(
504
args = new
NotifyCollectionChangedEventArgs
(
795
result = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, newItem, toIndex, fromIndex);
1989
forwardedArgs = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move, item, index+delta, args.OldIndex+delta);
System\Windows\Data\ListCollectionView.cs (6)
595
args = new
NotifyCollectionChangedEventArgs
(
617
args = new
NotifyCollectionChangedEventArgs
(
896
new
NotifyCollectionChangedEventArgs
(
1272
new
NotifyCollectionChangedEventArgs
(
2054
args = new
NotifyCollectionChangedEventArgs
(effectiveAction, args.OldItems[0], adjustedNewIndex, adjustedOldIndex);
3131
new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Move,
System.ObjectModel (1)
System\Collections\ObjectModel\ObservableCollection.cs (1)
260
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(action, item, index, oldIndex));