10 instantiations of NotifyCollectionChangedEventArgsEx
Microsoft.Maui.Controls (10)
Internals\NotifyCollectionChangedEventArgsExtensions.cs (5)
96
return new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Add, e.NewItems, e.NewStartingIndex);
99
return new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Remove, e.OldItems, e.OldStartingIndex);
102
return new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Move, e.OldItems, e.NewStartingIndex, e.OldStartingIndex);
105
return new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Replace, e.NewItems, e.OldItems, e.OldStartingIndex);
108
return new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Reset);
TemplatedItemsList.cs (5)
1017
e = new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Add, items, e.NewStartingIndex);
1055
e = new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Move, itemsToMove, e.NewStartingIndex, e.OldStartingIndex);
1077
e = new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Remove, items, e.OldStartingIndex);
1096
e = new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Replace, newItems, oldItems, e.NewStartingIndex);
1106
e = new
NotifyCollectionChangedEventArgsEx
(count, NotifyCollectionChangedAction.Reset);
3 references to NotifyCollectionChangedEventArgsEx
Microsoft.Maui.Controls (3)
Internals\NotifyCollectionChangedEventArgsExtensions.cs (1)
91
public static
NotifyCollectionChangedEventArgsEx
WithCount(this NotifyCollectionChangedEventArgs e, int count)
TemplatedItemsList.cs (2)
994
var
ex = e as
NotifyCollectionChangedEventArgsEx
;