ICollectionView.CurrentChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Al implementar esta interfaz, active este evento después de cambiar el elemento actual.
// 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)
Tipo de evento
Comentarios
No implemente esta interfaz para Microsoft .NET. Vea Comentarios en ICollectionView.