CompositionTarget.SurfaceContentsLost イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DirectX デバイスの変更など、基になる大きな変更が発生したときに発生します。 通常、アプリケーションは、このイベントの通知を受け取ったときに、そのサーフェスの内容を再生成する必要があります。
// Register
static event_token SurfaceContentsLost(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void SurfaceContentsLost(event_token const* cookie) const;
// Revoke with event_revoker
static CompositionTarget::SurfaceContentsLost_revoker SurfaceContentsLost(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> SurfaceContentsLost;
function onSurfaceContentsLost(eventArgs) { /* Your code */ }
Windows.UI.Xaml.Media.CompositionTarget.addEventListener("surfacecontentslost", onSurfaceContentsLost);
Windows.UI.Xaml.Media.CompositionTarget.removeEventListener("surfacecontentslost", onSurfaceContentsLost);
- or -
Windows.UI.Xaml.Media.CompositionTarget.onsurfacecontentslost = onSurfaceContentsLost;
Public Shared Custom Event SurfaceContentsLost As EventHandler(Of Object)