次の方法で共有


InkUnprocessedInput.PointerLost イベント

定義

InkCanvas コントロールのヒット テストまたは境界領域でポインターが検出されなくなった場合に発生します。

通常、接触が InkCanvas コントロールの外に移動した場合、または連絡先が別の要素によってキャプチャされた場合、ポインターは失われます。

// Register
event_token PointerLost(TypedEventHandler<InkUnprocessedInput, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InkUnprocessedInput::PointerLost_revoker PointerLost(auto_revoke_t, TypedEventHandler<InkUnprocessedInput, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InkUnprocessedInput,PointerEventArgs> PointerLost;
function onPointerLost(eventArgs) { /* Your code */ }
inkUnprocessedInput.addEventListener("pointerlost", onPointerLost);
inkUnprocessedInput.removeEventListener("pointerlost", onPointerLost);
- or -
inkUnprocessedInput.onpointerlost = onPointerLost;
Public Custom Event PointerLost As TypedEventHandler(Of InkUnprocessedInput, PointerEventArgs) 

イベントの種類

適用対象

こちらもご覧ください