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:
public class PickerDropDownSettings : PickerSettingsBase
Inheritance: objectPickerSettingsBasePickerDropDownSettings
Inherited Members
Constructors
public PickerDropDownSettings()
Fields
AcceptButtonStyleProperty
BindableProperty
Identifies the AcceptButtonStyle property.
public static readonly BindableProperty AcceptButtonStyleProperty
AcceptButtonTextProperty
BindableProperty
Identifies the AcceptButtonText property.
public static readonly BindableProperty AcceptButtonTextProperty
AcceptCommandParameterProperty
BindableProperty
Identifies the AcceptCommandParameter property.
public static readonly BindableProperty AcceptCommandParameterProperty
AcceptCommandProperty
BindableProperty
Identifies the AcceptCommand property.
public static readonly BindableProperty AcceptCommandProperty
ActualAcceptButtonStyleProperty
BindableProperty
Identifies the ActualAcceptButtonStyle property.
public static readonly BindableProperty ActualAcceptButtonStyleProperty
ActualCancelButtonStyleProperty
BindableProperty
Identifies the ActualCancelButtonStyle property.
public static readonly BindableProperty ActualCancelButtonStyleProperty
ActualDropDownViewStyleProperty
BindableProperty
Identifies the ActualDropDownViewStyle property.
public static readonly BindableProperty ActualDropDownViewStyleProperty
ActualFooterStyleProperty
BindableProperty
Identifies the ActualFooterStyle property.
public static readonly BindableProperty ActualFooterStyleProperty
CancelButtonStyleProperty
BindableProperty
Identifies the CancelButtonStyle property.
public static readonly BindableProperty CancelButtonStyleProperty
CancelButtonTextProperty
BindableProperty
Identifies the CancelButtonText property.
public static readonly BindableProperty CancelButtonTextProperty
CancelCommandParameterProperty
BindableProperty
Identifies the CancelCommandParameter property.
public static readonly BindableProperty CancelCommandParameterProperty
CancelCommandProperty
BindableProperty
Identifies the CancelCommand property.
public static readonly BindableProperty CancelCommandProperty
DropDownViewStyleProperty
BindableProperty
Identifies the DropDownViewStyle property.
public static readonly BindableProperty DropDownViewStyleProperty
FooterStyleProperty
BindableProperty
Identifies the FooterStyle property.
public static readonly BindableProperty FooterStyleProperty
FooterTemplateProperty
BindableProperty
Identifies the FooterTemplate property.
public static readonly BindableProperty FooterTemplateProperty
HorizontalOffsetProperty
BindableProperty
Identifies the HorizontalOffset property.
public static readonly BindableProperty HorizontalOffsetProperty
IsFooterVisibleProperty
BindableProperty
Identifies the IsFooterVisible property.
public static readonly BindableProperty IsFooterVisibleProperty
PlacementProperty
BindableProperty
Identifies the Placement property.
public static readonly BindableProperty PlacementProperty
VerticalOffsetProperty
BindableProperty
Identifies the VerticalOffset property.
public static readonly BindableProperty VerticalOffsetProperty
Properties
AcceptButtonStyle
Style
Gets or sets the style applied to the button which accepts the current selection of the selector and propagates it to the picker.
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.
public string AcceptButtonText { get; set; }
Gets or sets the command which propagates the current selection to the picker control and closes the DropDown.
public ICommand AcceptCommand { get; set; }
Gets or sets the parameter for the AcceptCommand.
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.
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.
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.
public Style ActualDropDownViewStyle { get; }
ActualFooterStyle
Style
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.
public Style ActualFooterStyle { get; }
CancelButtonStyle
Style
Gets or sets the style applied to the button which rejects the current selection of the selector.
public Style CancelButtonStyle { get; set; }
Gets or sets the text set to the button which rejects the current selection.
public string CancelButtonText { get; set; }
Gets or sets the command which rejects the current selection and closes the DropDown.
public ICommand CancelCommand { get; set; }
Gets or sets the parameter for the CancelCommand.
public object CancelCommandParameter { get; set; }
DropDownViewStyle
Style
Gets or sets the style which is applied to the drop-down. Target type should be PickerDropDownContentView.
public Style DropDownViewStyle { get; set; }
FooterStyle
Style
Gets or sets the style applied to the footer section of the drop-down. Target type should be PickerDropDownFooterView.
public Style FooterStyle { get; set; }
FooterTemplate
ControlTemplate
Gets or sets the ControlTemplate of the footer section of the drop-down.
public ControlTemplate FooterTemplate { get; set; }
Gets or sets the horizontal offset of the drop-down relative to the picker.
public double HorizontalOffset { get; set; }
Gets or sets a boolean value indicating if the footer is currently visible.
public bool IsFooterVisible { get; set; }
Gets or sets the placement of the drop-down relative to the picker.
public PlacementMode Placement { get; set; }
Gets or sets the vertical offset of the drop-down relative to the picker.
public double VerticalOffset { get; set; }