AppInstallManager.ItemStatusChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando ha cambiado el estado de una aplicación en la cola de instalación.
// Register
event_token ItemStatusChanged(TypedEventHandler<AppInstallManager, AppInstallManagerItemEventArgs const&> const& handler) const;
// Revoke with event_token
void ItemStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
AppInstallManager::ItemStatusChanged_revoker ItemStatusChanged(auto_revoke_t, TypedEventHandler<AppInstallManager, AppInstallManagerItemEventArgs const&> const& handler) const;
public event TypedEventHandler<AppInstallManager,AppInstallManagerItemEventArgs> ItemStatusChanged;
function onItemStatusChanged(eventArgs) { /* Your code */ }
appInstallManager.addEventListener("itemstatuschanged", onItemStatusChanged);
appInstallManager.removeEventListener("itemstatuschanged", onItemStatusChanged);
- or -
appInstallManager.onitemstatuschanged = onItemStatusChanged;
Public Custom Event ItemStatusChanged As TypedEventHandler(Of AppInstallManager, AppInstallManagerItemEventArgs)
Tipo de evento
Requisitos de Windows
Características de aplicaciones |
runFullTrust
|