ICoreWindow.PointerMoved Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Especifica el evento que se produce cuando un puntero se mueve dentro del cuadro de límite de la ventana.
// Register
event_token PointerMoved(TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerMoved(event_token const* cookie) const;
// Revoke with event_revoker
ICoreWindow::PointerMoved_revoker PointerMoved(auto_revoke_t, TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,PointerEventArgs> PointerMoved;
function onPointerMoved(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("pointermoved", onPointerMoved);
iCoreWindow.removeEventListener("pointermoved", onPointerMoved);
- or -
iCoreWindow.onpointermoved = onPointerMoved;
Event PointerMoved As TypedEventHandler(Of CoreWindow, PointerEventArgs)