TouchInputBehavior
Class
The base behavior for custom touch interaction.
Definition
Namespace:Telerik.Windows.Touch.Behaviors
Assembly:Telerik.Windows.Controls.dll
Syntax:
C#
public class TouchInputBehavior
Inheritance: objectTouchInputBehavior
Constructors
C#
public TouchInputBehavior()
Properties
Owner
UIElement
The owner element.
C#
public UIElement Owner { get; set; }
Methods
Executed on tap down.
C#
public virtual void TapDown(Point position, int tapCount)
Position relative to the root touchable element.
tapCountintTap count.
Executed on tap move.
C#
public virtual void TapMove(Point position)
Position relative to the root touchable element.
Executed on tap up.
C#
public virtual void TapUp(Point position)
Position relative to the root touchable element.