Class ConditionalFormattingValuePickerTemplateSelector
Selects a value picker template based on the type of the conditional formatting rule.
Inheritance
Namespace: Telerik.Windows.Controls.Spreadsheet.Dialogs
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public class ConditionalFormattingValuePickerTemplateSelector : DataTemplateSelector
Constructors
ConditionalFormattingValuePickerTemplateSelector()
Declaration
public ConditionalFormattingValuePickerTemplateSelector()
Properties
ComboBoxPickerTemplate
A ComboBox picker template.
Declaration
public DataTemplate ComboBoxPickerTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
DoubleValuePickerTemplate
A double value pickers template.
Declaration
public DataTemplate DoubleValuePickerTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
NoPickerTemplate
A template without picker.
Declaration
public DataTemplate NoPickerTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
NumericUpDownTemplate
A NumericUpDown picker template.
Declaration
public DataTemplate NumericUpDownTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
SingleValuePickerTemplate
A single value picker template.
Declaration
public DataTemplate SingleValuePickerTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
Methods
SelectTemplate(Object, DependencyObject)
Override this method to return an app specific System.Windows.DataTemplate.
Declaration
public override DataTemplate SelectTemplate(object item, DependencyObject container)
Parameters
System.Object
item
The data content |
System.Windows.DependencyObject
container
The element to which the template will be applied |
Returns
System.Windows.DataTemplate
an app-specific template to apply, or null. |