Compartir a través de


CoreComponentInputSource.PointerReleased Evento

Definición

Se genera cuando se suelta el puntero (por ejemplo, cuando se suelta un clic del botón del mouse o una pulsación de pantalla) para el elemento XAML hospedado activo.

// 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

Tipo de evento

Implementaciones

Se aplica a