다음을 통해 공유


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

이벤트 유형

구현

적용 대상