2 overrides of OnCollectionChanged
PresentationFramework (2)
System\Windows\Controls\DataGridColumnCollection.cs (1)
83protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
System\Windows\Controls\GridViewColumnCollection.cs (1)
110protected 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)
161OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); 189OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
MS\Internal\Annotations\AnnotationResourceCollection.cs (1)
110OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove, item, 0));
MS\Internal\Annotations\XmlElementCollection.cs (1)
239OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
MS\Internal\Data\DifferencingCollection.cs (1)
236OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
System\Windows\Controls\DataGridColumnCollection.cs (1)
139base.OnCollectionChanged(e);
System\Windows\Controls\GridViewColumnCollection.cs (1)
113base.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);