CoreIndependentInputSource.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’un clic sur un bouton de la souris ou un contact tactile ou stylet est détecté dans le rectangle englobant de l’application UWP.
// Register
event_token PointerPressed(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerPressed(event_token const* cookie) const;
// Revoke with event_revoker
CoreIndependentInputSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
coreIndependentInputSource.addEventListener("pointerpressed", onPointerPressed);
coreIndependentInputSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
coreIndependentInputSource.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerPressed
Type d'événement
TypedEventHandler<IInspectable,PointerEventArgs>