InputPointerSource.PointerEntered 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 produce cuando un puntero se mueve a los límites de este InputPointerSource.
// Register
event_token PointerEntered(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerEntered(event_token const* cookie) const;
// Revoke with event_revoker
InputPointerSource::PointerEntered_revoker PointerEntered(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerEntered;
function onPointerEntered(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerentered", onPointerEntered);
inputPointerSource.removeEventListener("pointerentered", onPointerEntered);
- or -
inputPointerSource.onpointerentered = onPointerEntered;
Public Custom Event PointerEntered As TypedEventHandler(Of InputPointerSource, PointerEventArgs)