ICoreWindow.PointerCaptureLost イベント

定義

ポインターが別のウィンドウに移動したときに発生するイベントを指定します。 このイベントは PointerExited の後に発生し、ウィンドウに対して発生する最後のポインター イベントです。

// Register
event_token PointerCaptureLost(TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;

// Revoke with event_token
void PointerCaptureLost(event_token const* cookie) const;

// Revoke with event_revoker
ICoreWindow::PointerCaptureLost_revoker PointerCaptureLost(auto_revoke_t, TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,PointerEventArgs> PointerCaptureLost;
function onPointerCaptureLost(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("pointercapturelost", onPointerCaptureLost);
iCoreWindow.removeEventListener("pointercapturelost", onPointerCaptureLost);
- or -
iCoreWindow.onpointercapturelost = onPointerCaptureLost;
Event PointerCaptureLost As TypedEventHandler(Of CoreWindow, PointerEventArgs) 

イベントの種類

適用対象

こちらもご覧ください