共用方式為


AppInstallItem.StatusChanged 事件

定義

發生于目前應用程式的安裝狀態已變更時。

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

事件類型

Windows 需求

應用程式功能
runFullTrust

適用於