Class
VirtualKeyboardTemplateSelector

Selects a DataTemplate for a key using default logic.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public class VirtualKeyboardTemplateSelector : DataTemplateSelector

Inheritance: objectVirtualKeyboardTemplateSelector

Constructors

VirtualKeyboardTemplateSelector()

Declaration

cs-api-definition
public VirtualKeyboardTemplateSelector()

Properties

LockTemplate

Gets or sets the lock key template.

Declaration

cs-api-definition
public DataTemplate LockTemplate { get; set; }

Property Value

DataTemplate

The lock template.

NumpadTemplate

Gets or sets the numpad key template.

Declaration

cs-api-definition
public DataTemplate NumpadTemplate { get; set; }

Property Value

DataTemplate

The numpad template.

RegularTemplate

Gets or sets the regular key template.

Declaration

cs-api-definition
public DataTemplate RegularTemplate { get; set; }

Property Value

DataTemplate

The regular template.

SpecialTemplate

Gets or sets the special key template.

Declaration

cs-api-definition
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

cs-api-definition
public override DataTemplate SelectTemplate(object item, DependencyObject container)

Parameters

item

object

The data object for which to select the template.

container

DependencyObject

The data-bound object.

Returns

DataTemplate