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
|