MicaController.StateChanged イベント

定義

システムの背景の状態が変更されたときに発生します。

// Register
event_token StateChanged(TypedEventHandler<ISystemBackdropControllerWithTargets, IInspectable const&> const& handler) const;

// Revoke with event_token
void StateChanged(event_token const* cookie) const;

// Revoke with event_revoker
MicaController::StateChanged_revoker StateChanged(auto_revoke_t, TypedEventHandler<ISystemBackdropControllerWithTargets, IInspectable const&> const& handler) const;
public event TypedEventHandler<ISystemBackdropControllerWithTargets,object> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
micaController.addEventListener("statechanged", onStateChanged);
micaController.removeEventListener("statechanged", onStateChanged);
- or -
micaController.onstatechanged = onStateChanged;
Public Custom Event StateChanged As TypedEventHandler(Of ISystemBackdropControllerWithTargets, Object) Implements StateChanged

イベントの種類

実装

注釈

このイベントをサブスクライブして、 と の間ActiveSystemBackdropState が変更されたときに通知を受けFallback/High Contrast取ることができます。 たとえば、システムの背景素材の状態に基づいて更新する他のシステム以外の背景 UI があるとします。

適用対象

こちらもご覧ください