Share via


CompositionCapabilities.Changed イベント

定義

サポートされているコンポジション機能が変更されたときにトリガーされるイベント。

// Register
event_token Changed(TypedEventHandler<CompositionCapabilities, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
CompositionCapabilities::Changed_revoker Changed(auto_revoke_t, TypedEventHandler<CompositionCapabilities, IInspectable const&> const& handler) const;
public event TypedEventHandler<CompositionCapabilities,object> Changed;
function onChanged(eventArgs) { /* Your code */ }
compositionCapabilities.addEventListener("changed", onChanged);
compositionCapabilities.removeEventListener("changed", onChanged);
- or -
compositionCapabilities.onchanged = onChanged;
Public Custom Event Changed As TypedEventHandler(Of CompositionCapabilities, Object) 

イベントの種類

注釈

このイベントは、機能 9.1 の GPU に接続されているモニターから上位レベルにアプリケーションをドラッグするときや、デバイス ドライバーの更新を開始する場合など、さまざまなシナリオでトリガーされる場合があります。

適用対象