ICorePointerInputSource.PointerCaptureLost Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит, когда поток записи входных данных указателя завершается сбоем или теряется.
// 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)
Тип события
TypedEventHandler<IInspectable,PointerEventArgs>