ItemsRepeater.ElementPrepared Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit chaque fois qu’un élément est prêt à être utilisé.
// 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)
Type d'événement
Remarques
L’élément préparé peut être créé récemment ou un élément existant en cours de réutilisation.