New to Telerik UI for WPFStart a free 30-day trial

Represents the touch mode of a control.

Definition

Namespace:Telerik.Windows.Input.Touch

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public enum TouchMode

Fields

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.

C#
HitTestHidden = 1

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

C#
HitTestVisible = 0

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.

C#
Locked = 2

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

C#
None = 3