InputNonClientPointerSource.PointerPressed É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’une action d’appui (telle qu’un appui tactile ou un clic de souris) dans une région de la zone non cliente de la fenêtre est reçue pour le pointeur.
// Register
event_token PointerPressed(TypedEventHandler<InputNonClientPointerSource, NonClientPointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerPressed(event_token const* cookie) const;
// Revoke with event_revoker
InputNonClientPointerSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<InputNonClientPointerSource, NonClientPointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputNonClientPointerSource,NonClientPointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
inputNonClientPointerSource.addEventListener("pointerpressed", onPointerPressed);
inputNonClientPointerSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
inputNonClientPointerSource.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of InputNonClientPointerSource, NonClientPointerEventArgs)