CoreWindow.PointerRoutedAway イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ポインターが別の入力オブジェクト (場合によっては別のプロセスで) にリダイレクトされるときに、ポインター入力を受け取る入力オブジェクトで発生します。
// 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 で導入)
|