CoreWindow.PointerRoutedAway イベント

定義

ポインターが別の入力オブジェクト (場合によっては別のプロセスで) にリダイレクトされるときに、ポインター入力を受け取る入力オブジェクトで発生します。

// Register
event_token PointerRoutedAway(TypedEventHandler<ICorePointerRedirector, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreWindow::PointerRoutedAway_revoker PointerRoutedAway(auto_revoke_t, TypedEventHandler<ICorePointerRedirector, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<ICorePointerRedirector,PointerEventArgs> PointerRoutedAway;
function onPointerRoutedAway(eventArgs) { /* Your code */ }
coreWindow.addEventListener("pointerroutedaway", onPointerRoutedAway);
coreWindow.removeEventListener("pointerroutedaway", onPointerRoutedAway);
- or -
coreWindow.onpointerroutedaway = onPointerRoutedAway;
Public Custom Event PointerRoutedAway As TypedEventHandler(Of ICorePointerRedirector, PointerEventArgs) Implements PointerRoutedAway

イベントの種類

実装

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10586.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v2.0 で導入)

適用対象

こちらもご覧ください