ItemsRepeater.ElementPrepared 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 cada vez que se prepara un elemento para su uso.
// Register
event_token ElementPrepared(TypedEventHandler<ItemsRepeater, ItemsRepeaterElementPreparedEventArgs const&> const& handler) const;
// Revoke with event_token
void ElementPrepared(event_token const* cookie) const;
// Revoke with event_revoker
ItemsRepeater::ElementPrepared_revoker ElementPrepared(auto_revoke_t, TypedEventHandler<ItemsRepeater, ItemsRepeaterElementPreparedEventArgs const&> const& handler) const;
public event TypedEventHandler<ItemsRepeater,ItemsRepeaterElementPreparedEventArgs> ElementPrepared;
function onElementPrepared(eventArgs) { /* Your code */ }
itemsRepeater.addEventListener("elementprepared", onElementPrepared);
itemsRepeater.removeEventListener("elementprepared", onElementPrepared);
- or -
itemsRepeater.onelementprepared = onElementPrepared;
Public Custom Event ElementPrepared As TypedEventHandler(Of ItemsRepeater, ItemsRepeaterElementPreparedEventArgs)
Tipo de evento
Comentarios
Es posible que el elemento preparado se cree recientemente o se vuelva a usar un elemento existente.