SystemUpdateManager.StateChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Evento di notifica di modifica della proprietà di stato.
// 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)