다음을 통해 공유


GestureRecognizer.Holding 이벤트

정의

사용자가 한 번의 터치, 마우스, 터치패드 또는 펜/스타일러스 접촉으로 길게 누르기 제스처를 수행할 때 발생합니다.

이 API에 대한 자세한 내용은 UWP WinRT Holding 항목을 참조하세요.

// Register
event_token Holding(TypedEventHandler<GestureRecognizer, HoldingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GestureRecognizer::Holding_revoker Holding(auto_revoke_t, TypedEventHandler<GestureRecognizer, HoldingEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,HoldingEventArgs> Holding;
function onHolding(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("holding", onHolding);
gestureRecognizer.removeEventListener("holding", onHolding);
- or -
gestureRecognizer.onholding = onHolding;
Public Custom Event Holding As TypedEventHandler(Of GestureRecognizer, HoldingEventArgs) 

이벤트 유형

적용 대상