GestureSettings

enumeration

Cambiar al Manual

Descripción

This enumeration represents the set of gestures that may be recognized by GestureRecognizer.

GestureRecognizer performs only the minimal disambiguation between the set of gestures that you request. For example, if you request just Tap, the user may hold their finger down as long as they like and a Tap will still occur when the user releases their finger.

Variables

NoneDisable support for gestures.
TapEnable support for the tap gesture.
DoubleTapEnable support for the double-tap gesture.
HoldEnable support for the hold gesture.
ManipulationTranslateEnable support for the manipulation gesture which tracks changes to the hand's position. This gesture is relative to the start position of the gesture and measures an absolute movement through the world.
NavigationXEnable support for the navigation gesture, in the horizontal axis.
NavigationYEnable support for the navigation gesture, in the vertical axis.
NavigationZEnable support for the navigation gesture, in the depth axis.
NavigationRailsXEnable support for the navigation gesture, in the horizontal axis using rails (guides).
NavigationRailsYEnable support for the navigation gesture, in the vertical axis using rails (guides).
NavigationRailsZEnable support for the navigation gesture, in the depth axis using rails (guides).