ICorePointerInputSource.PointerCaptureLost Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando se produce un error en el flujo de captura de entrada de puntero o se pierde.
// 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
ICorePointerInputSource::PointerCaptureLost_revoker PointerCaptureLost(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
event TypedEventHandler<object,PointerEventArgs> PointerCaptureLost;
function onPointerCaptureLost(eventArgs) { /* Your code */ }
iCorePointerInputSource.addEventListener("pointercapturelost", onPointerCaptureLost);
iCorePointerInputSource.removeEventListener("pointercapturelost", onPointerCaptureLost);
- or -
iCorePointerInputSource.onpointercapturelost = onPointerCaptureLost;
Event PointerCaptureLost As TypedEventHandler(Of Object, PointerEventArgs)
Tipo de evento
TypedEventHandler<IInspectable,PointerEventArgs>