Поделиться через


CoreInkIndependentInputSource.PointerMoving Событие

Определение

Происходит при перемещении указателя в пределах области проверки попадания или ограничивающей области InkCanvas , связанной с объектом InkPresenter .

// 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) 

Тип события

Применяется к

См. также раздел