AppInstallItem.StatusChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the installation status of the current app has changed.
// Register
event_token StatusChanged(TypedEventHandler<AppInstallItem, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
AppInstallItem::StatusChanged_revoker StatusChanged(auto_revoke_t, TypedEventHandler<AppInstallItem, IInspectable const&> const& handler) const;
public event TypedEventHandler<AppInstallItem,object> StatusChanged;
function onStatusChanged(eventArgs) { /* Your code */ }
appInstallItem.addEventListener("statuschanged", onStatusChanged);
appInstallItem.removeEventListener("statuschanged", onStatusChanged);
- or -
appInstallItem.onstatuschanged = onStatusChanged;
Public Custom Event StatusChanged As TypedEventHandler(Of AppInstallItem, Object)
Event Type
TypedEventHandler<AppInstallItem,IInspectable>
Windows requirements
App capabilities |
runFullTrust
|