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