次の方法で共有


SystemSetupInfo.OutOfBoxExperienceStateChanged イベント

定義

Out-of-Box Experience (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) 

イベントの種類

「SystemSetupInfo」を参照してください。

注釈

サブスクライバーは、OOBE 状態が変更されない場合でも、登録時に少なくとも 1 回イベントが発生することが保証されます。 これにより、状態のクエリと状態変更の登録の間にイベントが失われる可能性がある時間のウィンドウが隠されます。

適用対象

こちらもご覧ください