SystemSetupInfo.OutOfBoxExperienceStateChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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 回イベントが発生することが保証されます。 これにより、状態のクエリと状態変更の登録の間にイベントが失われる可能性がある時間のウィンドウが隠されます。