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

Represents a lightweight collection of items. Supports single and multiple selection, scrolling and virtualization, item styles and templates.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RadSelectableItemsView : RadItemsView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout

Inheritance: objectRadContentViewRadCompositeContentViewRadBorderContentViewRadItemsViewRadSelectableItemsView...

Derived Classes: RadTreeView

Implements: IContentViewICrossPlatformLayoutIElementIPaddingIRadContentViewITransformIView...

Inherited Members RadItemsView.ItemsSourcePropertyRadItemsView.ItemStylePropertyRadItemsView.ItemStyleSelectorPropertyRadItemsView.ItemTemplatePropertyRadItemsView.EmptyStylePropertyRadItemsView.EmptyTemplatePropertyRadItemsView.IsEmptyPropertyRadItemsView.HorizontalScrollBarStylePropertyRadItemsView.HorizontalScrollBarTemplatePropertyRadItemsView.HorizontalScrollBarVisibilityPropertyRadItemsView.HorizontalScrollBarLayoutModePropertyRadItemsView.VerticalScrollBarStylePropertyRadItemsView.VerticalScrollBarTemplatePropertyRadItemsView.VerticalScrollBarVisibilityPropertyRadItemsView.VerticalScrollBarLayoutModePropertyRadItemsView.ItemTappedCommandPropertyRadItemsView.ItemHoldingCommandPropertyRadItemsView.ScrollTo(object)RadItemsView.OnApplyTemplate()RadItemsView.ItemsSourceRadItemsView.ItemStyleRadItemsView.ItemStyleSelectorRadItemsView.ItemTemplateRadItemsView.EmptyStyleRadItemsView.EmptyTemplateRadItemsView.IsEmptyRadItemsView.HorizontalScrollBarStyleRadItemsView.HorizontalScrollBarTemplateRadItemsView.HorizontalScrollBarVisibilityRadItemsView.HorizontalScrollBarLayoutModeRadItemsView.VerticalScrollBarStyleRadItemsView.VerticalScrollBarTemplateRadItemsView.VerticalScrollBarVisibilityRadItemsView.VerticalScrollBarLayoutModeRadItemsView.ItemTappedCommandRadItemsView.ItemHoldingCommandRadItemsView.ScrollToCommandRadItemsView.ItemsSourceChangedRadItemsView.ItemTappedRadItemsView.ItemHoldingRadBorderContentView.BackgroundColorPropertyRadBorderContentView.BackgroundPropertyRadBorderContentView.BorderColorPropertyRadBorderContentView.BorderBrushPropertyRadBorderContentView.BorderThicknessPropertyRadBorderContentView.CornerRadiusPropertyRadBorderContentView.ContentPaddingPropertyRadBorderContentView.BackgroundColorRadBorderContentView.BackgroundRadBorderContentView.BorderColorRadBorderContentView.BorderBrushRadBorderContentView.BorderThicknessRadBorderContentView.CornerRadiusRadBorderContentView.ContentPaddingRadCompositeContentView.StylePropertyRadCompositeContentView.ControlTemplatePropertyRadCompositeContentView.OnBindingContextChanged()RadCompositeContentView.OnPropertyChanged(string)RadCompositeContentView.StyleRadCompositeContentView.ControlTemplateRadContentView.ActualStyleClassPropertyRadContentView.OnChildAdded(Element)RadContentView.OnChildRemoved(Element, int)RadContentView.OnHandlerChanged()...

Constructors

C#
public RadSelectableItemsView()

Fields

SelectedItemProperty

BindableProperty

Identifies the SelectedItem property.

C#
public static readonly BindableProperty SelectedItemProperty

SelectedItemsProperty

BindableProperty

Identifies the SelectedItems property.

C#
public static readonly BindableProperty SelectedItemsProperty

SelectionModeProperty

BindableProperty

Identifies the SelectionMode property.

C#
public static readonly BindableProperty SelectionModeProperty

Properties

Gets or sets the currently selected item in the control. When the SelectionMode property is set to , this is the first selected item in the SelectedItems collection.

C#
public object SelectedItem { get; set; }

Gets or sets the collection of items, which are currently selected in the control.

C#
public IList SelectedItems { get; set; }

SelectionMode

SelectionMode

Gets or sets the current selection mode of the collection. For more information see the SelectionMode type.

C#
public SelectionMode SelectionMode { get; set; }

Events

Raised when the current selection in the control has changed.

C#
public event EventHandler SelectionChanged