次の方法で共有


InputPointerSource.PointerRoutedAway イベント

定義

ポインターが別の InputPointerSource (場合によっては別のプロセス内) にリダイレクトされるときに発生します。

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

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

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

イベントの種類

注釈

他のターゲットへのルーティング中にポインターが解放されると、PointerRoutedReleased イベントが発生します。

適用対象