AppInstallItem.Completed 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在当前应用的安装完成时发生。
// Register
event_token Completed(TypedEventHandler<AppInstallItem, IInspectable const&> const& handler) const;
// Revoke with event_token
void Completed(event_token const* cookie) const;
// Revoke with event_revoker
AppInstallItem::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<AppInstallItem, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppInstallItem,object> Completed;
function onCompleted(eventArgs) { /* Your code */ }
appInstallItem.addEventListener("completed", onCompleted);
appInstallItem.removeEventListener("completed", onCompleted);
- or -
appInstallItem.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of AppInstallItem, Object)
事件类型
TypedEventHandler<AppInstallItem,IInspectable>
Windows 要求
应用功能 |
runFullTrust
|