CoreComponentInputSource.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.
Déclenché lorsque le pointeur est libéré (par exemple, lorsqu’un clic de souris ou une pression sur l’écran est relâché) pour l’élément XAML hébergé actif.
// 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
CoreComponentInputSource::PointerReleased_revoker PointerReleased(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerReleased;
function onPointerReleased(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointerreleased", onPointerReleased);
coreComponentInputSource.removeEventListener("pointerreleased", onPointerReleased);
- or -
coreComponentInputSource.onpointerreleased = onPointerReleased;
Public Custom Event PointerReleased As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerReleased
Type d'événement
TypedEventHandler<IInspectable,PointerEventArgs>