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