InputPointerSource.PointerMoved 事件

定义

当指针在此 InputPointerSource 的边界内移动时发生。

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

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

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

事件类型

注解

鼠标和笔设备比触摸更频繁地触发 PointerMoved 事件。 仅当手指触摸表面时,才能检测到触摸点,而鼠标具有始终可见的屏幕光标,即使未按下鼠标按钮,并且触控笔可以在不触摸数字化器表面的情况下悬停在数字化器表面。

鼠标输入与首次检测到鼠标输入时分配的单个指针相关联,并且所有鼠标启动的交互都具有相同的 PointerId。 单击鼠标按钮(左键、滚轮或右键)会通过 PointerPressed 事件在指针和该按钮之间创建一个辅助关联。 仅当释放该鼠标按钮时才引发 PointerReleased 事件(在完成该事件之前,其他按钮无法与指针关联)。 由于此排他性关联,会通过 PointerMoved 事件路由其他鼠标按钮单击。

适用于