Class ItemPickerContext
Represents a context that holds information about the item picker that is displayed in the chat.
Inherited Members
Namespace: Telerik.Maui.Controls.Chat
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ItemPickerContext : PickerContext, INotifyPropertyChanged
Constructors
ItemPickerContext()
Properties
ItemsSource
Gets or sets the collection of items displayed by the picker.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable
|
SelectedItem
Gets or sets the selected item.
Declaration
public object SelectedItem { get; set; }
Property Value
System.Object
|
SelectedItems
Gets or sets the collection of selected items.
Declaration
public IEnumerable SelectedItems { get; set; }
Property Value
System.Collections.IEnumerable
|
SelectionMode
Gets or sets the selection mode of the picker.
Declaration
public SelectionMode SelectionMode { get; set; }
Property Value
Microsoft.Maui.Controls.SelectionMode
|
Methods
CanExecuteOk()
Determines whether the Ok button of the picker can be clicked.
Declaration
public override bool CanExecuteOk()
Returns
System.Boolean
True if the button should be enabled, false otherwise. |