New to Telerik UI for .NET MAUIStart a free 30-day trial

Allows picking a single value from a list of values.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RadListPicker : RadPickerBase, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout

Inheritance: objectRadContentViewPickerContentViewRadPickerBaseRadListPicker

Implements: IContentViewICrossPlatformLayoutIElementIPaddingIRadContentViewITransformIView...

Inherited Members RadPickerBase.IsPlaceholderVisiblePropertyRadPickerBase.DisplayStringPropertyRadPickerBase.DisplayStringFormatPropertyRadPickerBase.DisplayLabelStylePropertyRadPickerBase.ActualDisplayLabelStylePropertyRadPickerBase.DisplayTemplatePropertyRadPickerBase.PlaceholderPropertyRadPickerBase.PlaceholderLabelStylePropertyRadPickerBase.ActualPlaceholderLabelStylePropertyRadPickerBase.PlaceholderTemplatePropertyRadPickerBase.IsClearButtonVisiblePropertyRadPickerBase.ClearButtonStylePropertyRadPickerBase.ActualClearButtonStylePropertyRadPickerBase.IsToggleButtonVisiblePropertyRadPickerBase.ToggleButtonStylePropertyRadPickerBase.ActualToggleButtonStylePropertyRadPickerBase.PickerModePropertyRadPickerBase.PopupSettingsPropertyRadPickerBase.BorderBrushPropertyRadPickerBase.IsOpenPropertyRadPickerBase.DropDownSettingsPropertyRadPickerBase.ClearSelection()RadPickerBase.OnPropertyChanged(string)RadPickerBase.OnHandlerChanged()RadPickerBase.IsPlaceholderVisibleRadPickerBase.DisplayStringRadPickerBase.DisplayLabelStyleRadPickerBase.IsClearButtonVisibleRadPickerBase.ClearButtonStyleRadPickerBase.IsToggleButtonVisibleRadPickerBase.ToggleButtonStyleRadPickerBase.ActualDisplayLabelStyleRadPickerBase.DisplayTemplateRadPickerBase.DisplayStringFormatRadPickerBase.PlaceholderRadPickerBase.PlaceholderLabelStyleRadPickerBase.ActualPlaceholderLabelStyleRadPickerBase.PlaceholderTemplateRadPickerBase.ActualClearButtonStyleRadPickerBase.ActualToggleButtonStyleRadPickerBase.PickerModeRadPickerBase.PopupSettingsRadPickerBase.DropDownSettingsRadPickerBase.BorderBrushRadPickerBase.IsOpenRadPickerBase.ToggleCommandRadPickerBase.ClearCommandRadPickerBase.SelectionChangedPickerContentView.BackgroundColorPropertyPickerContentView.BorderColorPropertyPickerContentView.BorderThicknessPropertyPickerContentView.CornerRadiusPropertyPickerContentView.BackgroundColorPickerContentView.BorderColorPickerContentView.BorderThicknessPickerContentView.CornerRadiusRadContentView.ActualStyleClassPropertyRadContentView.OnChildAdded(Element)RadContentView.OnChildRemoved(Element, int)RadContentView.OnBindingContextChanged()...

Constructors

C#
public RadListPicker()

Fields

ActualItemStyleProperty

BindableProperty

Identifies the ActualItemStyle property.

C#
public static readonly BindableProperty ActualItemStyleProperty

Identifies the SelectedItemStyle property.

C#
public static readonly BindableProperty ActualSelectedItemStyleProperty

Identifies the ActualSelectionHighlightStyle property.

C#
public static readonly BindableProperty ActualSelectionHighlightStyleProperty

Identifies the ActualSpinnerStyle property.

C#
public static readonly BindableProperty ActualSpinnerStyleProperty

Identifies the DisplayMemberPath property.

C#
public static readonly BindableProperty DisplayMemberPathProperty

IsLoopingProperty

BindableProperty

Identifies the IsLooping property.

C#
public static readonly BindableProperty IsLoopingProperty

ItemLengthProperty

BindableProperty

Identifies the ItemLength property.

C#
public static readonly BindableProperty ItemLengthProperty

ItemSpacingProperty

BindableProperty

Identifies the ItemSpacing property.

C#
public static readonly BindableProperty ItemSpacingProperty

ItemsSourceProperty

BindableProperty

Identifies the ItemsSource property.

C#
public static readonly BindableProperty ItemsSourceProperty

ItemStyleProperty

BindableProperty

Identifies the ItemStyle property.

C#
public static readonly BindableProperty ItemStyleProperty

ItemTemplateProperty

BindableProperty

Identifies the ItemTemplate property.

C#
public static readonly BindableProperty ItemTemplateProperty

SelectedItemProperty

BindableProperty

Identifies the SelectedItem property.

C#
public static readonly BindableProperty SelectedItemProperty

Identifies the SelectedItemStyle property.

C#
public static readonly BindableProperty SelectedItemStyleProperty

Identifies the SelectedItemTemplate property.

C#
public static readonly BindableProperty SelectedItemTemplateProperty

Identifies the SelectionHighlightStyle property.

C#
public static readonly BindableProperty SelectionHighlightStyleProperty

SpinnerStyleProperty

BindableProperty

Identifies the SpinnerStyle property.

C#
public static readonly BindableProperty SpinnerStyleProperty

Properties

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.

C#
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.

C#
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.

C#
public Style ActualSelectionHighlightStyle { get; }

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.

C#
public Style ActualSpinnerStyle { get; }

Gets or sets the path of the property which is to be displayed as DisplayString.

C#
public string DisplayMemberPath { get; set; }

Gets or sets a value indicating whether the items should loop infinitely while scrolling.

C#
public bool IsLooping { get; set; }

Gets or sets the length of the items in the RadListPicker.

C#
public double ItemLength { get; set; }

Gets or sets the spacing between the items in the RadListPicker.

C#
public double ItemSpacing { get; set; }

Gets or sets a collection used to generate the content of the RadListPicker.

C#
public IList ItemsSource { get; set; }

Gets or sets the Style used to display each item.

C#
public Style ItemStyle { get; set; }

ItemTemplate

DataTemplate

Gets or sets the DataTemplate used to display each item.

C#
public DataTemplate ItemTemplate { get; set; }

Gets or sets the selected item in the RadListPicker.

C#
public object SelectedItem { get; set; }

Gets or sets the Style used to display the selected item.

C#
public Style SelectedItemStyle { get; set; }

Gets or sets the DataTemplate used to display the selected item.

C#
public DataTemplate SelectedItemTemplate { get; set; }

Gets or sets the style used to highlight the current selection.

C#
public Style SelectionHighlightStyle { get; set; }

Gets or sets a style which is applied to the spinner of the RadListPicker.

C#
public Style SpinnerStyle { get; set; }