ICoreWindow.PointerCaptureLost イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ポインターが別のウィンドウに移動したときに発生するイベントを指定します。 このイベントは 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)