Partager via


CoreComponentInputSource.PointerPressed Événement

Définition

Déclenché lorsque le pointeur est « appuyé » (par exemple, un clic sur le bouton de la souris ou une pression en plein écran) pour l’élément XAML hébergé actif.

// 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
CoreComponentInputSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointerpressed", onPointerPressed);
coreComponentInputSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
coreComponentInputSource.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerPressed

Type d'événement

Implémente

S’applique à