다음을 통해 공유


InputPointerSource.PointerReleased 이벤트

정의

InputPointerSource의 범위 내에 있는 동안 이전에 Press 동작을 시작한 포인터 디바이스가 해제될 때(마우스 단추가 놓이거나 터치 또는 펜 접촉이 디지타이저 표면에서 해제된 경우) 발생합니다.

// Register
event_token PointerReleased(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InputPointerSource::PointerReleased_revoker PointerReleased(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerReleased;
function onPointerReleased(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerreleased", onPointerReleased);
inputPointerSource.removeEventListener("pointerreleased", onPointerReleased);
- or -
inputPointerSource.onpointerreleased = onPointerReleased;
Public Custom Event PointerReleased As TypedEventHandler(Of InputPointerSource, PointerEventArgs) 

이벤트 유형

적용 대상