ClassVirtualKeyboardTemplateSelector
Selects a DataTemplate for a key using default logic.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
public class VirtualKeyboardTemplateSelector : DataTemplateSelector
Inheritance: objectVirtualKeyboardTemplateSelector
Constructors
VirtualKeyboardTemplateSelector()
Declaration
public VirtualKeyboardTemplateSelector()
Properties
LockTemplate
Gets or sets the lock key template.
Declaration
public DataTemplate LockTemplate { get; set; }
Property Value
DataTemplate
The lock template.
NumpadTemplate
Gets or sets the numpad key template.
Declaration
public DataTemplate NumpadTemplate { get; set; }
Property Value
DataTemplate
The numpad template.
RegularTemplate
Gets or sets the regular key template.
Declaration
public DataTemplate RegularTemplate { get; set; }
Property Value
DataTemplate
The regular template.
SpecialTemplate
Gets or sets the special key template.
Declaration
public DataTemplate SpecialTemplate { get; set; }
Property Value
DataTemplate
The special template.
Methods
SelectTemplate(object, DependencyObject)
When overridden in a derived class, returns a DataTemplate based on custom logic.
Declaration
public override DataTemplate SelectTemplate(object item, DependencyObject container)
Parameters
item
The data object for which to select the template.
container
DependencyObject
The data-bound object.
Returns
DataTemplate