InputPointerSource.PointerRoutedTo É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 est routé vers cette InputPointerSource à partir d’une autre cible d’entrée.
// Register
event_token PointerRoutedTo(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerRoutedTo(event_token const* cookie) const;
// Revoke with event_revoker
InputPointerSource::PointerRoutedTo_revoker PointerRoutedTo(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerRoutedTo;
function onPointerRoutedTo(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerroutedto", onPointerRoutedTo);
inputPointerSource.removeEventListener("pointerroutedto", onPointerRoutedTo);
- or -
inputPointerSource.onpointerroutedto = onPointerRoutedTo;
Public Custom Event PointerRoutedTo As TypedEventHandler(Of InputPointerSource, PointerEventArgs)