ClassTouchInputBehavior
Class
The base behavior for custom touch interaction.
Definition
Namespace:Telerik.Windows.Touch.Behaviors
Assembly:Telerik.Windows.Controls.dll
Syntax:
cs-api-definition
public class TouchInputBehavior
Inheritance: objectTouchInputBehavior
Constructors
TouchInputBehavior()
Declaration
cs-api-definition
public TouchInputBehavior()
Properties
Handled
Marks if the current Touch operation is handled.
Owner
The owner element.
Declaration
cs-api-definition
public UIElement Owner { get; set; }
Property Value
UIElement
Methods
TapDown(Point, int)
Executed on tap down.
Declaration
cs-api-definition
public virtual void TapDown(Point position, int tapCount)
Parameters
position
Point
Position relative to the root touchable element.
tapCount
Tap count.
TapMove(Point)
Executed on tap move.
Declaration
cs-api-definition
public virtual void TapMove(Point position)
Parameters
position
Point
Position relative to the root touchable element.
TapUp(Point)
Executed on tap up.
Declaration
cs-api-definition
public virtual void TapUp(Point position)
Parameters
position
Point
Position relative to the root touchable element.