GestureRecognizer.Holding 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当用户使用一次触摸、鼠标或笔/触笔接触) 执行按住手势 (时发生。
// 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 事件触发两次:一次,当持有开始 () 开始 ,另一次,当持有结束 (完成 或 取消) 。