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