CoreComponentInputSource.PointerCaptureLost Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Generato quando il flusso di acquisizione dell'input del puntatore viene perso.
// 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
CoreComponentInputSource::PointerCaptureLost_revoker PointerCaptureLost(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerCaptureLost;
function onPointerCaptureLost(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointercapturelost", onPointerCaptureLost);
coreComponentInputSource.removeEventListener("pointercapturelost", onPointerCaptureLost);
- or -
coreComponentInputSource.onpointercapturelost = onPointerCaptureLost;
Public Custom Event PointerCaptureLost As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerCaptureLost
Tipo evento
TypedEventHandler<IInspectable,PointerEventArgs>
Implementazioni
Commenti
Questo evento viene generato solo se il dispositivo di input supporta l'acquisizione dei dati del puntatore.