NotifyCollectionChangedEventHandler Delegate

Definition

Represents the method that will handle the CollectionChanged event.

.NET This interface appears as System.Collections.Specialized.NotifyCollectionChangedEventHandler.

[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.Guid(2332625372, 8197, 23955, 191, 138, 114, 95, 1, 123, 170, 141)]
public delegate void NotifyCollectionChangedEventHandler(object sender, NotifyCollectionChangedEventArgs e);
Public Delegate Sub NotifyCollectionChangedEventHandler(sender As Object, e As NotifyCollectionChangedEventArgs)

Parameters

sender
Object

The object where the handler is attached.

e
NotifyCollectionChangedEventArgs

Event data for the event.

Attributes

Remarks

When programming with .NET, this delegate is hidden and developers should use the System.Collections.Specialized.NotifyCollectionChangedEventHandler delegate.

Applies to

See also