Partager via


AppInstallItem.Completed Événement

Définition

Se produit lorsque l’installation de l’application actuelle est terminée.

// 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) 

Type d'événement

Configuration requise pour Windows

Fonctionnalités de l’application
runFullTrust

S’applique à