共用方式為


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 事件。

適用於