Pivot.PivotItemUnloading Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Evento per offrire l'opportunità di caricare, modificare o rimuovere dinamicamente il contenuto di un elemento pivot quando viene rimosso.
// Register
event_token PivotItemUnloading(TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
// Revoke with event_token
void PivotItemUnloading(event_token const* cookie) const;
// Revoke with event_revoker
Pivot::PivotItemUnloading_revoker PivotItemUnloading(auto_revoke_t, TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
public event TypedEventHandler<Pivot,PivotItemEventArgs> PivotItemUnloading;
function onPivotItemUnloading(eventArgs) { /* Your code */ }
pivot.addEventListener("pivotitemunloading", onPivotItemUnloading);
pivot.removeEventListener("pivotitemunloading", onPivotItemUnloading);
- or -
pivot.onpivotitemunloading = onPivotItemUnloading;
Public Custom Event PivotItemUnloading As TypedEventHandler(Of Pivot, PivotItemEventArgs)
<Pivot PivotItemUnloading="eventhandler" />