Compartir a través de


SystemSetupInfo.OutOfBoxExperienceStateChanged Evento

Definición

Se genera cuando cambia la fase actual del ciclo de vida de la experiencia rápida (OOBE).

// 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 de evento

Ejemplos

Consulte SystemSetupInfo.

Comentarios

Los suscriptores están garantizados de que el evento se generará al menos una vez, en el momento del registro, incluso si el estado de OOBE nunca cambia. Esto obvia un período de tiempo en el que los eventos podrían perderse entre el estado de consulta y el registro de los cambios de estado.

Se aplica a

Consulte también