Class RadSelectableItemsView
Represents a lightweight collection of items. Supports single and multiple selection, scrolling and virtualization, item styles and templates.
Inheritance
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadSelectableItemsView : RadItemsView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, IRadSelectableItemsView, IRadItemsView
Constructors
RadSelectableItemsView()
Declaration
public RadSelectableItemsView()
Fields
SelectedItemProperty
Identifies the SelectedItem property.
Declaration
public static readonly BindableProperty SelectedItemProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SelectedItemsProperty
Identifies the SelectedItems property.
Declaration
public static readonly BindableProperty SelectedItemsProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SelectionModeProperty
Identifies the SelectionMode property.
Declaration
public static readonly BindableProperty SelectionModeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
SelectedItem
Gets or sets the currently selected item in the control. When the SelectionMode property is set to Microsoft.Maui.Controls.SelectionMode.Multiple, this is the first selected item in the SelectedItems collection.
Declaration
public object SelectedItem { get; set; }
Property Value
System.Object
|
SelectedItems
Gets or sets the collection of items, which are currently selected in the control.
Declaration
public IList SelectedItems { get; set; }
Property Value
System.Collections.IList
|
SelectionMode
Gets or sets the current selection mode of the collection. For more information see the Microsoft.Maui.Controls.SelectionMode type.
Declaration
public SelectionMode SelectionMode { get; set; }
Property Value
Microsoft.Maui.Controls.SelectionMode
|
Events
SelectionChanged
Raised when the current selection in the control has changed.
Declaration
public event EventHandler SelectionChanged
Event Type
System.EventHandler
|