次の方法で共有


CoreInkIndependentInputSource.PointerMoving イベント

定義

InkPresenter オブジェクトに関連付けられている InkCanvas のヒット テストまたは境界領域内でポインターが移動すると発生します。

// Register
event_token PointerMoving(TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreInkIndependentInputSource::PointerMoving_revoker PointerMoving(auto_revoke_t, TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreInkIndependentInputSource,PointerEventArgs> PointerMoving;
function onPointerMoving(eventArgs) { /* Your code */ }
coreInkIndependentInputSource.addEventListener("pointermoving", onPointerMoving);
coreInkIndependentInputSource.removeEventListener("pointermoving", onPointerMoving);
- or -
coreInkIndependentInputSource.onpointermoving = onPointerMoving;
Public Custom Event PointerMoving As TypedEventHandler(Of CoreInkIndependentInputSource, PointerEventArgs) 

イベントの種類

適用対象

こちらもご覧ください