CoreIndependentInputSource.PointerCaptureLost 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當指標移至另一個 UWP 應用程式時發生。 此事件會在 PointerExited 之後引發,而且是應用程式針對此指標接收的最終事件。
// 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
事件類型
TypedEventHandler<IInspectable,PointerEventArgs>