Class RadChatPicker
Represents a view that displays a picker which expects input from the user.
Inherited Members
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadChatPicker : RadContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding
Constructors
RadChatPicker()
Fields
ActualCancelCommandProperty
Identifies the ActualCancelCommand property.
Declaration
public static readonly BindableProperty ActualCancelCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ActualOkCommandProperty
Identifies the ActualOkCommand property.
Declaration
public static readonly BindableProperty ActualOkCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CancelButtonTextColorProperty
Identifies the CancelButtonTextColor property.
Declaration
public static readonly BindableProperty CancelButtonTextColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CancelCommandProperty
Identifies the CancelCommand property.
Declaration
public static readonly BindableProperty CancelCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ContextProperty
Identifies the Context property.
Declaration
public static readonly BindableProperty ContextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
FooterBackgroundColorProperty
HeaderBackgroundColorProperty
Identifies the HeaderBackgroundColor property.
Declaration
public static readonly BindableProperty HeaderBackgroundColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderTextColorProperty
Identifies the HeaderTextColor property.
Declaration
public static readonly BindableProperty HeaderTextColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderTextProperty
Identifies the HeaderText property.
Declaration
public static readonly BindableProperty HeaderTextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsCancelButtonVisibleProperty
Identifies the IsCancelButtonVisible property.
Declaration
public static readonly BindableProperty IsCancelButtonVisibleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsOkButtonVisibleProperty
Identifies the IsOkButtonVisible property.
Declaration
public static readonly BindableProperty IsOkButtonVisibleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
OkButtonTextColorProperty
Identifies the OkButtonTextColor property.
Declaration
public static readonly BindableProperty OkButtonTextColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
OkCommandProperty
Identifies the OkCommand property.
Declaration
public static readonly BindableProperty OkCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
TemplateSelectorProperty
Identifies the TemplateSelector property.
Declaration
public static readonly BindableProperty TemplateSelectorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ActualCancelCommand
Gets the actual command that is executed when the Cancel button is pressed. This command will execute the custom CancelCommand.
Declaration
public ICommand ActualCancelCommand { get; }
Property Value
System.Windows.Input.ICommand
|
ActualOkCommand
Gets the actual command that is executed when the Ok button is pressed. This command will execute the custom OkCommand.
Declaration
public ICommand ActualOkCommand { get; }
Property Value
System.Windows.Input.ICommand
|
CancelButtonTextColor
Gets or sets the text color of the Cancel button of the picker.
Declaration
public Color CancelButtonTextColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
CancelCommand
Gets or sets the user command that will be executed when the Cancel button is pressed.
Declaration
public ICommand CancelCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
Context
Gets or sets the picker context that carries information about the data that should be displayed in the picker.
Declaration
public PickerContext Context { get; set; }
Property Value
PickerContext
|
FooterBackgroundColor
HeaderBackgroundColor
Gets or sets the background of the picker's header.
Declaration
public Color HeaderBackgroundColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
HeaderText
Gets or sets the text displayed as the header of the picker.
Declaration
public string HeaderText { get; set; }
Property Value
System.String
|
HeaderTextColor
Gets or sets the color of the picker's header text.
Declaration
public Color HeaderTextColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
IsCancelButtonVisible
Gets or sets a value that determines whether the Cancel button is visible.
Declaration
public bool IsCancelButtonVisible { get; set; }
Property Value
System.Boolean
|
IsOkButtonVisible
Gets or sets a value that determines whether the Ok button is visible.
Declaration
public bool IsOkButtonVisible { get; set; }
Property Value
System.Boolean
|
OkButtonTextColor
Gets or sets the text color of the Ok button of the picker.
Declaration
public Color OkButtonTextColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
OkCommand
Gets or sets the user command that will be executed when the Ok button is pressed.
Declaration
public ICommand OkCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
TemplateSelector
Gets or sets the template selector that determines the Microsoft.Maui.Controls.DataTemplate that should be used for the corresponding Context.
Declaration
public DataTemplateSelector TemplateSelector { get; set; }
Property Value
Microsoft.Maui.Controls.DataTemplateSelector
|
Methods
OnApplyTemplate()
Declaration
protected override void OnApplyTemplate()
Events
CancelClicked
Occurs when the Cancel button is clicked.
Declaration
public event EventHandler CancelClicked
Event Type
System.EventHandler
|
OkClicked
Occurs when the Ok button is clicked.
Declaration
public event EventHandler OkClicked
Event Type
System.EventHandler
|