16 references to NotifyCollectionChangedEventArgs
Microsoft.Maui.Controls (9)
Internals\NotifyCollectionChangedEventArgsEx.cs (1)
37
public NotifyCollectionChangedEventArgsEx(int count, NotifyCollectionChangedAction action, IList changedItems, int startingIndex) :
base
(action, changedItems, startingIndex)
ObservableList.cs (3)
25
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, items, index));
41
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, items, originalIndex));
78
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Remove, items, index));
ObservableWrapper.cs (1)
189
handler(this, new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, e.NewItems, outerIndex));
TemplatedItemsList.cs (4)
815
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, newItems, e.NewStartingIndex));
839
OnCollectionChanged(new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Remove, oldItems, e.OldStartingIndex));
1344
e = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, ConvertItems(e.NewItems), e.NewStartingIndex);
1352
e = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Remove, ConvertItems(e.OldItems), e.OldStartingIndex);
PresentationCore (2)
System\Windows\Ink\StrokeCollection.cs (2)
648
args = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Remove, e.Removed, e.Index);
653
args = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, e.Added, e.Index);
PresentationFramework (4)
System\Windows\Controls\DataGridColumnHeaderCollection.cs (2)
211
newArgs = new
NotifyCollectionChangedEventArgs
(e.Action, HeadersFromColumns(e.NewItems), e.NewStartingIndex);
215
newArgs = new
NotifyCollectionChangedEventArgs
(e.Action, HeadersFromColumns(e.OldItems), e.OldStartingIndex);
System\Windows\Data\ListCollectionView.cs (2)
2041
args2 = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Add, args.NewItems, adjustedNewIndex);
2042
args = new
NotifyCollectionChangedEventArgs
(NotifyCollectionChangedAction.Remove, args.OldItems, adjustedOldIndex);
System.ObjectModel (1)
System\Collections\Specialized\NotifyCollectionChangedEventArgs.cs (1)
90
this
(action, changedItems, -1)