ItemCollection.VectorChanged 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í.
Se produce cuando la lista de elementos de la colección ha cambiado o se restablece la colección.
public:
virtual event VectorChangedEventHandler<Platform::Object ^> ^ VectorChanged;
// Register
event_token VectorChanged(VectorChangedEventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void VectorChanged(event_token const* cookie) const;
// Revoke with event_revoker
ItemCollection::VectorChanged_revoker VectorChanged(auto_revoke_t, VectorChangedEventHandler<IInspectable> const& handler) const;
public event VectorChangedEventHandler<object> VectorChanged;
function onVectorChanged(eventArgs) { /* Your code */ }
itemCollection.addEventListener("vectorchanged", onVectorChanged);
itemCollection.removeEventListener("vectorchanged", onVectorChanged);
- or -
itemCollection.onvectorchanged = onVectorChanged;
Public Custom Event VectorChanged As VectorChangedEventHandler(Of Object) Implements VectorChanged