RadListPicker
Allows picking a single value from a list of values.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadListPicker : RadPickerBase, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Inheritance: objectRadContentViewPickerContentViewRadPickerBaseRadListPicker
Implements:
Inherited Members
Constructors
public RadListPicker()
Fields
ActualItemStyleProperty
BindableProperty
Identifies the ActualItemStyle property.
public static readonly BindableProperty ActualItemStyleProperty
ActualSelectedItemStyleProperty
BindableProperty
Identifies the SelectedItemStyle property.
public static readonly BindableProperty ActualSelectedItemStyleProperty
ActualSelectionHighlightStyleProperty
BindableProperty
Identifies the ActualSelectionHighlightStyle property.
public static readonly BindableProperty ActualSelectionHighlightStyleProperty
ActualSpinnerStyleProperty
BindableProperty
Identifies the ActualSpinnerStyle property.
public static readonly BindableProperty ActualSpinnerStyleProperty
DisplayMemberPathProperty
BindableProperty
Identifies the DisplayMemberPath property.
public static readonly BindableProperty DisplayMemberPathProperty
IsLoopingProperty
BindableProperty
Identifies the IsLooping property.
public static readonly BindableProperty IsLoopingProperty
ItemLengthProperty
BindableProperty
Identifies the ItemLength property.
public static readonly BindableProperty ItemLengthProperty
ItemSpacingProperty
BindableProperty
Identifies the ItemSpacing property.
public static readonly BindableProperty ItemSpacingProperty
ItemsSourceProperty
BindableProperty
Identifies the ItemsSource property.
public static readonly BindableProperty ItemsSourceProperty
ItemStyleProperty
BindableProperty
Identifies the ItemStyle property.
public static readonly BindableProperty ItemStyleProperty
ItemTemplateProperty
BindableProperty
Identifies the ItemTemplate property.
public static readonly BindableProperty ItemTemplateProperty
SelectedItemProperty
BindableProperty
Identifies the SelectedItem property.
public static readonly BindableProperty SelectedItemProperty
SelectedItemStyleProperty
BindableProperty
Identifies the SelectedItemStyle property.
public static readonly BindableProperty SelectedItemStyleProperty
SelectedItemTemplateProperty
BindableProperty
Identifies the SelectedItemTemplate property.
public static readonly BindableProperty SelectedItemTemplateProperty
SelectionHighlightStyleProperty
BindableProperty
Identifies the SelectionHighlightStyle property.
public static readonly BindableProperty SelectionHighlightStyleProperty
SpinnerStyleProperty
BindableProperty
Identifies the SpinnerStyle property.
public static readonly BindableProperty SpinnerStyleProperty
Properties
ActualItemStyle
Style
Gets the result of merging the default style and the style set as ItemStyle. This is the style that is used to define the look of the component.
public Style ActualItemStyle { get; }
Gets the result of merging the default style and the style set as SelectedItemStyle. This is the style that is used to define the look of the component.
public Style ActualSelectedItemStyle { get; }
Gets the result of merging the default style and the style set as SelectionHighlightStyle. This is the style that is used to define the look of the component.
public Style ActualSelectionHighlightStyle { get; }
ActualSpinnerStyle
Style
Gets the result of merging the default style and the style set as SpinnerStyle. This is the style that is used to define the look of the component.
public Style ActualSpinnerStyle { get; }
Gets or sets the path of the property which is to be displayed as DisplayString.
public string DisplayMemberPath { get; set; }
Gets or sets a value indicating whether the items should loop infinitely while scrolling.
public bool IsLooping { get; set; }
Gets or sets the length of the items in the RadListPicker.
public double ItemLength { get; set; }
Gets or sets the spacing between the items in the RadListPicker.
public double ItemSpacing { get; set; }
Gets or sets a collection used to generate the content of the RadListPicker.
public IList ItemsSource { get; set; }
ItemStyle
Style
Gets or sets the Style used to display each item.
public Style ItemStyle { get; set; }
ItemTemplate
DataTemplate
Gets or sets the DataTemplate used to display each item.
public DataTemplate ItemTemplate { get; set; }
Gets or sets the selected item in the RadListPicker.
public object SelectedItem { get; set; }
SelectedItemStyle
Style
Gets or sets the Style used to display the selected item.
public Style SelectedItemStyle { get; set; }
SelectedItemTemplate
DataTemplate
Gets or sets the DataTemplate used to display the selected item.
public DataTemplate SelectedItemTemplate { get; set; }
Gets or sets the style used to highlight the current selection.
public Style SelectionHighlightStyle { get; set; }
SpinnerStyle
Style
Gets or sets a style which is applied to the spinner of the RadListPicker.
public Style SpinnerStyle { get; set; }