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

Defines the available settings when the picker is in a drop-down mode. For more information see PickerMode.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class PickerDropDownSettings : PickerSettingsBase

Inheritance: objectPickerSettingsBasePickerDropDownSettings

Inherited Members PickerSettingsBase.SelectorStylePropertyPickerSettingsBase.SelectorStyle

Constructors

C#
public PickerDropDownSettings()

Fields

Identifies the AcceptButtonStyle property.

C#
public static readonly BindableProperty AcceptButtonStyleProperty

AcceptButtonTextProperty

BindableProperty

Identifies the AcceptButtonText property.

C#
public static readonly BindableProperty AcceptButtonTextProperty

Identifies the AcceptCommandParameter property.

C#
public static readonly BindableProperty AcceptCommandParameterProperty

AcceptCommandProperty

BindableProperty

Identifies the AcceptCommand property.

C#
public static readonly BindableProperty AcceptCommandProperty

Identifies the ActualAcceptButtonStyle property.

C#
public static readonly BindableProperty ActualAcceptButtonStyleProperty

Identifies the ActualCancelButtonStyle property.

C#
public static readonly BindableProperty ActualCancelButtonStyleProperty

Identifies the ActualDropDownViewStyle property.

C#
public static readonly BindableProperty ActualDropDownViewStyleProperty

Identifies the ActualFooterStyle property.

C#
public static readonly BindableProperty ActualFooterStyleProperty

Identifies the CancelButtonStyle property.

C#
public static readonly BindableProperty CancelButtonStyleProperty

CancelButtonTextProperty

BindableProperty

Identifies the CancelButtonText property.

C#
public static readonly BindableProperty CancelButtonTextProperty

Identifies the CancelCommandParameter property.

C#
public static readonly BindableProperty CancelCommandParameterProperty

CancelCommandProperty

BindableProperty

Identifies the CancelCommand property.

C#
public static readonly BindableProperty CancelCommandProperty

Identifies the DropDownViewStyle property.

C#
public static readonly BindableProperty DropDownViewStyleProperty

FooterStyleProperty

BindableProperty

Identifies the FooterStyle property.

C#
public static readonly BindableProperty FooterStyleProperty

FooterTemplateProperty

BindableProperty

Identifies the FooterTemplate property.

C#
public static readonly BindableProperty FooterTemplateProperty

HorizontalOffsetProperty

BindableProperty

Identifies the HorizontalOffset property.

C#
public static readonly BindableProperty HorizontalOffsetProperty

IsFooterVisibleProperty

BindableProperty

Identifies the IsFooterVisible property.

C#
public static readonly BindableProperty IsFooterVisibleProperty

PlacementProperty

BindableProperty

Identifies the Placement property.

C#
public static readonly BindableProperty PlacementProperty

VerticalOffsetProperty

BindableProperty

Identifies the VerticalOffset property.

C#
public static readonly BindableProperty VerticalOffsetProperty

Properties

Gets or sets the style applied to the button which accepts the current selection of the selector and propagates it to the picker.

C#
public Style AcceptButtonStyle { get; set; }

Gets or sets the text of the button which accepts the current selection of the selector and propagates it to the picker.

C#
public string AcceptButtonText { get; set; }

Gets or sets the command which propagates the current selection to the picker control and closes the DropDown.

C#
public ICommand AcceptCommand { get; set; }

Gets or sets the parameter for the AcceptCommand.

C#
public object AcceptCommandParameter { get; set; }

Gets the result of merging the default style and the style set as AcceptButtonStyle. This is the style that is used to define the look of the component.

C#
public Style ActualAcceptButtonStyle { get; }

Gets the result of merging the default style and the style set as CancelButtonStyle. This is the style that is used to define the look of the component.

C#
public Style ActualCancelButtonStyle { get; }

Gets the result of merging the default style and the style set as DropDownViewStyle. This is the style that is used to define the look of the component.

C#
public Style ActualDropDownViewStyle { get; }

Gets the result of merging the default style and the style set as FooterStyle. This is the style that is used to define the look of the component.

C#
public Style ActualFooterStyle { get; }

Gets or sets the style applied to the button which rejects the current selection of the selector.

C#
public Style CancelButtonStyle { get; set; }

Gets or sets the text set to the button which rejects the current selection.

C#
public string CancelButtonText { get; set; }

Gets or sets the command which rejects the current selection and closes the DropDown.

C#
public ICommand CancelCommand { get; set; }

Gets or sets the parameter for the CancelCommand.

C#
public object CancelCommandParameter { get; set; }

Gets or sets the style which is applied to the drop-down. Target type should be PickerDropDownContentView.

C#
public Style DropDownViewStyle { get; set; }

Gets or sets the style applied to the footer section of the drop-down. Target type should be PickerDropDownFooterView.

C#
public Style FooterStyle { get; set; }

FooterTemplate

ControlTemplate

Gets or sets the ControlTemplate of the footer section of the drop-down.

C#
public ControlTemplate FooterTemplate { get; set; }

Gets or sets the horizontal offset of the drop-down relative to the picker.

C#
public double HorizontalOffset { get; set; }

Gets or sets a boolean value indicating if the footer is currently visible.

C#
public bool IsFooterVisible { get; set; }

Gets or sets the placement of the drop-down relative to the picker.

C#
public PlacementMode Placement { get; set; }

Gets or sets the vertical offset of the drop-down relative to the picker.

C#
public double VerticalOffset { get; set; }