Pivot.PivotItemUnloading 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
事件,可讓您在移除樞紐專案時動態載入、變更或移除其內容。
// 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" />