SystemUpdateManager.StateChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Événement de notification de modification de propriété d’état.
// Register
static event_token StateChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void StateChanged(event_token const* cookie) const;
// Revoke with event_revoker
static SystemUpdateManager::StateChanged_revoker StateChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
Windows.System.Update.SystemUpdateManager.addEventListener("statechanged", onStateChanged);
Windows.System.Update.SystemUpdateManager.removeEventListener("statechanged", onStateChanged);
- or -
Windows.System.Update.SystemUpdateManager.onstatechanged = onStateChanged;
Public Shared Custom Event StateChanged As EventHandler(Of Object)