IStorageProviderStatusUISource.StatusUIChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
此變更通知事件會通知用戶端更新儲存體提供者狀態 UI 飛出視窗。
// Register
event_token StatusUIChanged(TypedEventHandler<IStorageProviderStatusUISource, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusUIChanged(event_token const* cookie) const;
// Revoke with event_revoker
IStorageProviderStatusUISource::StatusUIChanged_revoker StatusUIChanged(auto_revoke_t, TypedEventHandler<IStorageProviderStatusUISource, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageProviderStatusUISource,object> StatusUIChanged;
function onStatusUIChanged(eventArgs) { /* Your code */ }
iStorageProviderStatusUISource.addEventListener("statusuichanged", onStatusUIChanged);
iStorageProviderStatusUISource.removeEventListener("statusuichanged", onStatusUIChanged);
- or -
iStorageProviderStatusUISource.onstatusuichanged = onStatusUIChanged;
Event StatusUIChanged As TypedEventHandler(Of IStorageProviderStatusUISource, Object)
事件類型
TypedEventHandler<IStorageProviderStatusUISource,IInspectable>