Interface IGestureRecognizerFactory
A factory that creates gesture recognizers for UI elements.
Namespace: Telerik.Windows.Input.Touch
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IGestureRecognizerFactory
Properties
Priority
Gets the priority of the recognizers. A recognizer with a higher priority will receive the basic touch events (such as TouchEnter, TouchDown, etc.) before a recognizer with a lower priority.
Declaration
int Priority { get; }
Property Value
System.Int32
|
Methods
CreateGestureRecognizer(UIElement)
Creates a recognizer dedicated to the UI element.
Declaration
GestureRecognizerBase CreateGestureRecognizer(UIElement element)
Parameters
System.Windows.UIElement
element
|
Returns
GestureRecognizerBase
|
RegisterGestureTransitions()
When invoked, the factory should register the allowed gesture transitions. Use the RegisterGestureTransitions method of the GestureManager.
Declaration
void RegisterGestureTransitions()