CoreWindow.PointerMoved 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于指標在應用程式的周框方塊內移動時。
// Register
event_token PointerMoved(TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerMoved(event_token const* cookie) const;
// Revoke with event_revoker
CoreWindow::PointerMoved_revoker PointerMoved(auto_revoke_t, TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,PointerEventArgs> PointerMoved;
function onPointerMoved(eventArgs) { /* Your code */ }
coreWindow.addEventListener("pointermoved", onPointerMoved);
coreWindow.removeEventListener("pointermoved", onPointerMoved);
- or -
coreWindow.onpointermoved = onPointerMoved;
Public Custom Event PointerMoved As TypedEventHandler(Of CoreWindow, PointerEventArgs) Implements PointerMoved