Pivot.PivotItemLoaded É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.
Événement pour indiquer qu’un élément est entièrement chargé.
// Register
event_token PivotItemLoaded(TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
// Revoke with event_token
void PivotItemLoaded(event_token const* cookie) const;
// Revoke with event_revoker
Pivot::PivotItemLoaded_revoker PivotItemLoaded(auto_revoke_t, TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
public event TypedEventHandler<Pivot,PivotItemEventArgs> PivotItemLoaded;
function onPivotItemLoaded(eventArgs) { /* Your code */ }
pivot.addEventListener("pivotitemloaded", onPivotItemLoaded);
pivot.removeEventListener("pivotitemloaded", onPivotItemLoaded);
- or -
pivot.onpivotitemloaded = onPivotItemLoaded;
Public Custom Event PivotItemLoaded As TypedEventHandler(Of Pivot, PivotItemEventArgs)
<Pivot PivotItemLoaded="eventhandler" />