次の方法で共有


InputPointerSource.PointerCaptureLost イベント

定義

この InputPointerSource に接触しているポインターが別の入力ターゲットに移動したときに発生します。

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

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

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

イベントの種類

注釈

このイベントは、関連付けられたポインターに対して発生する最後のイベントです。

ポインターは、ユーザーの操作によってキャプチャが失われる可能性があります。または、プログラムによって別のポインターをキャプチャしたか、現在のポインター キャプチャを意図的に解放したためです。

適用対象