ICorePointerInputSource.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.
Si verifica quando il flusso di acquisizione dell'input del puntatore ha esito negativo o 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
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 evento
TypedEventHandler<IInspectable,PointerEventArgs>