Class VirtualKeyboardTemplateSelector
Selects a System.Windows.DataTemplate for a key using default logic.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class VirtualKeyboardTemplateSelector : DataTemplateSelector
Constructors
VirtualKeyboardTemplateSelector()
Declaration
public VirtualKeyboardTemplateSelector()
Properties
LockTemplate
Gets or sets the lock key template.
Declaration
public DataTemplate LockTemplate { get; set; }
Property Value
System.Windows.DataTemplate
The lock template. |
NumpadTemplate
Gets or sets the numpad key template.
Declaration
public DataTemplate NumpadTemplate { get; set; }
Property Value
System.Windows.DataTemplate
The numpad template. |
RegularTemplate
Gets or sets the regular key template.
Declaration
public DataTemplate RegularTemplate { get; set; }
Property Value
System.Windows.DataTemplate
The regular template. |
SpecialTemplate
Gets or sets the special key template.
Declaration
public DataTemplate SpecialTemplate { get; set; }
Property Value
System.Windows.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
System.Object
item
The data object for which to select the template. |
System.Windows.DependencyObject
container
The data-bound object. |
Returns
System.Windows.DataTemplate
|