GestureRecognizer.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) 

事件类型

注解

若要支持使用触摸和笔/触笔输入进行保留,请在 GestureSettings 属性中指定 Hold

若要支持使用鼠标输入进行保留,请在 GestureSettings 属性中指定 HoldWithMouse

Holding 事件触发两次:一次,当持有开始 () 开始 ,另一次,当持有结束 (完成取消) 。

适用于

另请参阅