Partager via


SystemSetupInfo.OutOfBoxExperienceStateChanged Événement

Définition

Déclenché lorsque la phase actuelle du cycle de vie de l’expérience OOBE (Out-of-Box Experience) change.

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

Type d'événement

Exemples

Consultez SystemSetupInfo.

Remarques

Les abonnés sont assurés que l’événement sera déclenché au moins une fois, au moment de l’inscription, même si l’état OOBE ne change jamais. Cela évite une fenêtre de temps dans laquelle les événements pourraient sinon être perdus entre l’interrogation de l’état et l’inscription des modifications d’état.

S’applique à

Voir aussi