CoreIndependentInputSource.PointerPressed 事件

定义

在 UWP 应用的边界矩形内单击鼠标按钮或检测到触摸或笔接触时发生。

// Register
event_token PointerPressed(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreIndependentInputSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
coreIndependentInputSource.addEventListener("pointerpressed", onPointerPressed);
coreIndependentInputSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
coreIndependentInputSource.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerPressed

事件类型

实现

适用于