'Declaration
Public Event ItemChanged As EventHandler(Of BaseCollectionEventArgs(Of T))
public event EventHandler<BaseCollectionEventArgs<T>> ItemChanged
Event Data
The event handler receives an argument of type BaseCollectionEventArgs<T> containing data related to this event. The following BaseCollectionEventArgs<T> properties provide information specific to this event.
Property | Description |
---|---|
Item | Returns reference to the changed item. |
See Also