ICollectionView.CurrentChanged Event
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.
When implementing this interface, fire this event after the current item has been changed.
// Register
event_token CurrentChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void CurrentChanged(event_token const* cookie) const;
// Revoke with event_revoker
ICollectionView::CurrentChanged_revoker CurrentChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
event System.EventHandler<object> CurrentChanged;
function onCurrentChanged(eventArgs) { /* Your code */ }
iCollectionView.addEventListener("currentchanged", onCurrentChanged);
iCollectionView.removeEventListener("currentchanged", onCurrentChanged);
- or -
iCollectionView.oncurrentchanged = onCurrentChanged;
Event CurrentChanged As EventHandler(Of Object)
Event Type
Remarks
Don't implement this interface for Microsoft .NET. See Remarks in ICollectionView.