NotifyCollectionChangedEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.