CoreWindow.PointerMoved Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un pointeur se déplace dans le cadre englobant de l’application.
// 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
CoreWindow::PointerMoved_revoker PointerMoved(auto_revoke_t, TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,PointerEventArgs> PointerMoved;
function onPointerMoved(eventArgs) { /* Your code */ }
coreWindow.addEventListener("pointermoved", onPointerMoved);
coreWindow.removeEventListener("pointermoved", onPointerMoved);
- or -
coreWindow.onpointermoved = onPointerMoved;
Public Custom Event PointerMoved As TypedEventHandler(Of CoreWindow, PointerEventArgs) Implements PointerMoved