Pivot.PivotItemLoading 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
事件,可讓您在顯示樞紐專案之前動態載入或變更其內容。
// Register
event_token PivotItemLoading(TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
// Revoke with event_token
void PivotItemLoading(event_token const* cookie) const;
// Revoke with event_revoker
Pivot::PivotItemLoading_revoker PivotItemLoading(auto_revoke_t, TypedEventHandler<Pivot, PivotItemEventArgs const&> const& handler) const;
public event TypedEventHandler<Pivot,PivotItemEventArgs> PivotItemLoading;
function onPivotItemLoading(eventArgs) { /* Your code */ }
pivot.addEventListener("pivotitemloading", onPivotItemLoading);
pivot.removeEventListener("pivotitemloading", onPivotItemLoading);
- or -
pivot.onpivotitemloading = onPivotItemLoading;
Public Custom Event PivotItemLoading As TypedEventHandler(Of Pivot, PivotItemEventArgs)
<Pivot PivotItemLoading="eventhandler" />