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

Represents the content area of the picker drop-down.

Definition

Constructors

Initializes a new instance of the PickerDropDownContentView class.

C#
public PickerDropDownContentView()

Fields

Identifies the AcceptButtonStyle property.

C#
public static readonly BindableProperty AcceptButtonStyleProperty

AcceptButtonTextProperty

BindableProperty

Identifies the AcceptButtonText property.

C#
public static readonly BindableProperty AcceptButtonTextProperty

AcceptCommandProperty

BindableProperty

Identifies the AcceptCommand property.

C#
public static readonly BindableProperty AcceptCommandProperty

Identifies the CancelButtonStyle property.

C#
public static readonly BindableProperty CancelButtonStyleProperty

CancelButtonTextProperty

BindableProperty

Identifies the CancelButtonText property.

C#
public static readonly BindableProperty CancelButtonTextProperty

CancelCommandProperty

BindableProperty

Identifies the CancelCommand property.

C#
public static readonly BindableProperty CancelCommandProperty

FooterStyleProperty

BindableProperty

Identifies the FooterStyle property.

C#
public static readonly BindableProperty FooterStyleProperty

FooterTemplateProperty

BindableProperty

Identifies the FooterTemplate property.

C#
public static readonly BindableProperty FooterTemplateProperty

IsFooterVisibleProperty

BindableProperty

Identifies the IsFooterVisible property.

C#
public static readonly BindableProperty IsFooterVisibleProperty

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 drop-down.

C#
public ICommand AcceptCommand { get; set; }

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 of the selector.

C#
public string CancelButtonText { get; set; }

Gets or sets the command which rejects the current selection and closes the drop-down.

C#
public ICommand CancelCommand { 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 a boolean value indicating if the footer is currently visible.

C#
public bool IsFooterVisible { get; set; }