Enum
TouchMode

Represents the touch mode of a control.

Definition

Namespace:Telerik.Windows.Input.Touch

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public enum TouchMode

Fields

HitTestHidden

The element is not visible for touch input. Touch events will be raised for the element's parents as if this element is not in the visual tree.

Declaration

cs-api-definition
HitTestHidden = 1

Field Value

TouchMode

HitTestVisible

The element is visible for touch input and events will route normally.

Declaration

cs-api-definition
HitTestVisible = 0

Field Value

TouchMode

Locked

The element is visible for touch input and it will capture the touch device on touch down and will mark all touch events as handled, thus preventing event routing.

Declaration

cs-api-definition
Locked = 2

Field Value

TouchMode

None

The element will suppress all touch events. No touch events will be raised for touch input within the boundaries of the element.

Declaration

cs-api-definition
None = 3

Field Value

TouchMode