PointerEventKind
类型:枚举
实验性
名称 | 值 | 描述 |
---|---|---|
None (无) | 0x0 | 默认指针事件类型,对应于应由 React 根视图指针事件处理程序忽略的事件。 |
开始 (Start) | 0x1 | 指针事件类型,对应于 React 根视图上的 UIElement.PointerPressedEvent 。 |
结束 (End) | 0x2 | 指针事件类型,对应于 React 根视图上的 UIElement.PointerReleasedEvent 。 |
移动 (Move) | 0x3 | 指针事件类型,对应于 React 根视图上的 UIElement.PointerMovedEvent 。 |
取消 (Cancel) | 0x4 | 指针事件类型,对应于 React 根视图上的 UIElement.PointerCanceledEvent 。 |
捕获丢失 (CaptureLost) | 0x5 | 指针事件类型,对应于 React 根视图上的 UIElement.PointerCaptureLostEvent 。 |