CoreComponentInputSource.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í.
Se genera cuando el puntero se mueve para el elemento XAML hospedado activo.
// Register
event_token PointerMoved(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerMoved(event_token const* cookie) const;
// Revoke with event_revoker
CoreComponentInputSource::PointerMoved_revoker PointerMoved(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerMoved;
function onPointerMoved(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointermoved", onPointerMoved);
coreComponentInputSource.removeEventListener("pointermoved", onPointerMoved);
- or -
coreComponentInputSource.onpointermoved = onPointerMoved;
Public Custom Event PointerMoved As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerMoved
Tipo de evento
TypedEventHandler<IInspectable,PointerEventArgs>