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

Provides data for the gesture recognizers.

Definition

Namespace:Telerik.Windows.Input.Touch

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public class GestureRecognizerEventArgs : EventArgs

Inheritance: objectEventArgsGestureRecognizerEventArgs

Inherited Members EventArgs.Empty

Properties

Element

UIElement

Gets the sender element for which the event occurred.

C#
public UIElement Element { get; }

Gets or sets a value indicating whether the event is handled by a gesture recognizer.

C#
public bool Handled { get; set; }

Gets the position of the associated touch point, relative to the sender element.

C#
public Point Position { get; }

Gets the touch event args associated with the original touch event.

C#
public TouchEventArgs TouchEventArgs { get; }

Gets the associated touch device Id.

C#
public int TouchId { get; }

TouchPoint

TouchPoint

Gets the touch point, relative to the sender element.

C#
public TouchPoint TouchPoint { get; }