共用方式為


AppInstallManager.ItemStatusChanged 事件

定義

發生于安裝佇列中應用程式的狀態已變更時。

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

事件類型

Windows 需求

應用程式功能
runFullTrust

適用於