InputPointerSource.PointerRoutedTo 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当指针从不同的输入目标路由到此 InputPointerSource 时发生。
// Register
event_token PointerRoutedTo(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerRoutedTo(event_token const* cookie) const;
// Revoke with event_revoker
InputPointerSource::PointerRoutedTo_revoker PointerRoutedTo(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerRoutedTo;
function onPointerRoutedTo(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerroutedto", onPointerRoutedTo);
inputPointerSource.removeEventListener("pointerroutedto", onPointerRoutedTo);
- or -
inputPointerSource.onpointerroutedto = onPointerRoutedTo;
Public Custom Event PointerRoutedTo As TypedEventHandler(Of InputPointerSource, PointerEventArgs)