Class RadPickerBase
A base class for all pickers.
Inherited Members
Namespace: Telerik.XamarinForms.Input
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public abstract class RadPickerBase : PickerContentView
Constructors
RadPickerBase()
Declaration
protected RadPickerBase()
Fields
ActualDisplayLabelStyleProperty
Identifies the ActualDisplayLabelStyle property.
Declaration
public static readonly BindableProperty ActualDisplayLabelStyleProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
ActualPlaceholderLabelStyleProperty
Identifies the ActualPlaceholderLabelStyle property.
Declaration
public static readonly BindableProperty ActualPlaceholderLabelStyleProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
DisplayLabelStyleProperty
Identifies the DisplayLabelStyle property.
Declaration
public static readonly BindableProperty DisplayLabelStyleProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
DisplayStringFormatProperty
Identifies the DisplayStringFormat property.
Declaration
public static readonly BindableProperty DisplayStringFormatProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
DisplayStringProperty
Identifies the DisplayString property.
Declaration
public static readonly BindableProperty DisplayStringProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
DisplayTemplateProperty
Identifies the DisplayTemplate property.
Declaration
public static readonly BindableProperty DisplayTemplateProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
PlaceholderLabelStyleProperty
Identifies the PlaceholderLabelStyle property.
Declaration
public static readonly BindableProperty PlaceholderLabelStyleProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
PlaceholderProperty
Identifies the Placeholder property.
Declaration
public static readonly BindableProperty PlaceholderProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
PlaceholderTemplateProperty
Identifies the PlaceholderTemplate property.
Declaration
public static readonly BindableProperty PlaceholderTemplateProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
SelectorSettingsProperty
Identifies the SelectorSettings property.
Declaration
public static readonly BindableProperty SelectorSettingsProperty
Field Value
|
Xamarin.Forms.BindableProperty
|
Properties
ActualDisplayLabelStyle
Gets the result of merging the default style and the style set as DisplayLabelStyle. This is the actual style that is applied to the label in the default DisplayTemplate.
Declaration
public Style ActualDisplayLabelStyle { get; }
Property Value
|
Xamarin.Forms.Style
|
ActualPlaceholderLabelStyle
Gets the result of merging the default style and the style set as PlaceholderLabelStyle. This is the actual style that is applied to the label in the default PlaceholderTemplate.
Declaration
public Style ActualPlaceholderLabelStyle { get; }
Property Value
|
Xamarin.Forms.Style
|
ClearCommand
Gets the command which sets the selection to null.
Declaration
public ICommand ClearCommand { get; }
Property Value
|
System.Windows.Input.ICommand
|
DisplayLabelStyle
Gets or sets the style that will be applied to the label used to visualize the selection.
Declaration
public Style DisplayLabelStyle { get; set; }
Property Value
|
Xamarin.Forms.Style
|
DisplayString
Gets the result of applying the DisplayStringFormat on the current selection.
Declaration
public string DisplayString { get; }
Property Value
|
System.String
|
DisplayStringFormat
Gets or sets the format string that is to be applied to the current selection.
Declaration
public string DisplayStringFormat { get; set; }
Property Value
|
System.String
|
DisplayTemplate
Gets or sets the template which will visualize the current selection.
Declaration
public ControlTemplate DisplayTemplate { get; set; }
Property Value
|
Xamarin.Forms.ControlTemplate
|
Placeholder
Gets or sets the object to be displayed when there is no selection.
Declaration
public object Placeholder { get; set; }
Property Value
|
System.Object
|
PlaceholderLabelStyle
Gets or sets the style to be applied to the label defined in the default PlaceholderTemplate.
Declaration
public Style PlaceholderLabelStyle { get; set; }
Property Value
|
Xamarin.Forms.Style
|
PlaceholderTemplate
Gets or sets the ControlTemplate which is to be displayed when no selection is available.
Declaration
public ControlTemplate PlaceholderTemplate { get; set; }
Property Value
|
Xamarin.Forms.ControlTemplate
|
SelectorSettings
Gets or sets a value which defines how the selector of the picker will be displayed.
Declaration
public PickerSelectorSettingsBase SelectorSettings { get; set; }
Property Value
|
PickerSelectorSettingsBase
|
ToggleCommand
Gets the command which visualizes and hides the selector.
Declaration
public ICommand ToggleCommand { get; }
Property Value
|
System.Windows.Input.ICommand
|
Methods
ClearSelection()
Declaration
public void ClearSelection()
Events
SelectionChanged
Invoked when the selection changes.
Declaration
public event EventHandler SelectionChanged
Event Type
|
System.EventHandler
|