SystemSetupInfo.OutOfBoxExperienceStateChanged 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.
Generato quando la fase corrente nel ciclo di vita dell'esperienza predefinita (OOBE) cambia.
// Register
static event_token OutOfBoxExperienceStateChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void OutOfBoxExperienceStateChanged(event_token const* cookie) const;
// Revoke with event_revoker
static SystemSetupInfo::OutOfBoxExperienceStateChanged_revoker OutOfBoxExperienceStateChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> OutOfBoxExperienceStateChanged;
function onOutOfBoxExperienceStateChanged(eventArgs) { /* Your code */ }
Windows.System.Profile.SystemSetupInfo.addEventListener("outofboxexperiencestatechanged", onOutOfBoxExperienceStateChanged);
Windows.System.Profile.SystemSetupInfo.removeEventListener("outofboxexperiencestatechanged", onOutOfBoxExperienceStateChanged);
- or -
Windows.System.Profile.SystemSetupInfo.onoutofboxexperiencestatechanged = onOutOfBoxExperienceStateChanged;
Public Shared Custom Event OutOfBoxExperienceStateChanged As EventHandler(Of Object)
Tipo evento
Esempio
Vedere SystemSetupInfo.
Commenti
I sottoscrittori sono garantiti che l'evento venga generato almeno una volta, al momento della registrazione, anche se lo stato OOBE non cambia mai. In questo modo viene superato un intervallo di tempo in cui gli eventi potrebbero essere persi tra lo stato di query e la registrazione delle modifiche dello stato.