CoreComponentInputSource.PointerMoved Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Generato quando il puntatore viene spostato per l'elemento XAML ospitato attivo.
// 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 evento
TypedEventHandler<IInspectable,PointerEventArgs>