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>