Share via


CoreIndependentInputSource.PointerMoved Evento

Definizione

Si verifica quando un puntatore si sposta all'interno del rettangolo di selezione dell'app UWP.

// 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
CoreIndependentInputSource::PointerMoved_revoker PointerMoved(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerMoved;
function onPointerMoved(eventArgs) { /* Your code */ }
coreIndependentInputSource.addEventListener("pointermoved", onPointerMoved);
coreIndependentInputSource.removeEventListener("pointermoved", onPointerMoved);
- or -
coreIndependentInputSource.onpointermoved = onPointerMoved;
Public Custom Event PointerMoved As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerMoved

Tipo evento

Implementazioni

Si applica a