2 overrides of OnCollectionChanged
PresentationFramework (2)
System\Windows\Controls\DataGridColumnCollection.cs (1)
84protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
System\Windows\Controls\GridViewColumnCollection.cs (1)
111protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
19 references to OnCollectionChanged
Microsoft.Maui.Controls (8)
FormattedString.cs (1)
88 base.OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, removed));
GestureElement.cs (1)
74 base.OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, removed));
ObservableList.cs (6)
25 OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Add, items, index)); 41 OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Add, items, originalIndex)); 66 OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Move, items, newIndex, oldIndex)); 78 OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, items, index)); 90 OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, items)); 110 OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace, ritems, oldItems, startIndex));
PresentationFramework (7)
MS\Internal\Annotations\AnnotationObservableCollection.cs (2)
162OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); 190OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
MS\Internal\Annotations\AnnotationResourceCollection.cs (1)
111OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, item, 0));
MS\Internal\Annotations\XmlElementCollection.cs (1)
240OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
MS\Internal\Data\DifferencingCollection.cs (1)
237OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
System\Windows\Controls\DataGridColumnCollection.cs (1)
140base.OnCollectionChanged(e);
System\Windows\Controls\GridViewColumnCollection.cs (1)
114base.OnCollectionChanged(e);
System.ObjectModel (4)
System\Collections\ObjectModel\ObservableCollection.cs (4)
252OnCollectionChanged(new NotifyCollectionChangedEventArgs(action, item, index)); 260OnCollectionChanged(new NotifyCollectionChangedEventArgs(action, item, index, oldIndex)); 268OnCollectionChanged(new NotifyCollectionChangedEventArgs(action, newItem, oldItem, index)); 274private void OnCollectionReset() => OnCollectionChanged(EventArgsCache.ResetCollectionChanged);