CoreInkIndependentInputSource.PointerMoving 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于指標在與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)