Compartir a través de


CoreIndependentInputSource.PointerCaptureLost Evento

Definición

Se produce cuando un puntero se mueve a otra aplicación para UWP. Este evento se genera después de PointerExited y es el evento final recibido por la aplicación para este puntero.

// Register
event_token PointerCaptureLost(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;

// Revoke with event_token
void PointerCaptureLost(event_token const* cookie) const;

// Revoke with event_revoker
CoreIndependentInputSource::PointerCaptureLost_revoker PointerCaptureLost(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerCaptureLost;
function onPointerCaptureLost(eventArgs) { /* Your code */ }
coreIndependentInputSource.addEventListener("pointercapturelost", onPointerCaptureLost);
coreIndependentInputSource.removeEventListener("pointercapturelost", onPointerCaptureLost);
- or -
coreIndependentInputSource.onpointercapturelost = onPointerCaptureLost;
Public Custom Event PointerCaptureLost As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerCaptureLost

Tipo de evento

Implementaciones

Se aplica a