Search
ObservableCollection(T).CollectionChanged Event
See Also
 





Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<NotifyCollectionChangedEventArgs<T>> CollectionChanged

Visual Basic  Copy Code

Public Event CollectionChanged As EventHandler(Of NotifyCollectionChangedEventArgs(Of T))

 Event Data

CollectionChanged event handlers receive an argument of type NotifyCollectionChangedEventArgs<T>.

 See Also