Class RadItemsView
Represents a lightweight collection of items. Supports scrolling and virtualization, item styles and templates.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadItemsView : RadBorderContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout, IRadItemsView
Constructors
RadItemsView()
Fields
EmptyStyleProperty
Identifies the Empty
Declaration
public static readonly BindableProperty EmptyStyleProperty
Field Value
Microsoft.
|
EmptyTemplateProperty
Identifies the Empty
Declaration
public static readonly BindableProperty EmptyTemplateProperty
Field Value
Microsoft.
|
HorizontalScrollBarLayoutModeProperty
Identifies the Horizontal
Declaration
public static readonly BindableProperty HorizontalScrollBarLayoutModeProperty
Field Value
Microsoft.
|
HorizontalScrollBarStyleProperty
Identifies the Horizontal
Declaration
public static readonly BindableProperty HorizontalScrollBarStyleProperty
Field Value
Microsoft.
|
HorizontalScrollBarTemplateProperty
Identifies the Horizontal
Declaration
public static readonly BindableProperty HorizontalScrollBarTemplateProperty
Field Value
Microsoft.
|
HorizontalScrollBarVisibilityProperty
Identifies the Horizontal
Declaration
public static readonly BindableProperty HorizontalScrollBarVisibilityProperty
Field Value
Microsoft.
|
IsEmptyProperty
Identifies the Is
Declaration
public static readonly BindableProperty IsEmptyProperty
Field Value
Microsoft.
|
ItemHoldingCommandProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemHoldingCommandProperty
Field Value
Microsoft.
|
ItemsSourceProperty
Identifies the Items
Declaration
public static readonly BindableProperty ItemsSourceProperty
Field Value
Microsoft.
|
ItemStyleProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemStyleProperty
Field Value
Microsoft.
|
ItemStyleSelectorProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemStyleSelectorProperty
Field Value
Microsoft.
|
ItemTappedCommandProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemTappedCommandProperty
Field Value
Microsoft.
|
ItemTemplateProperty
Identifies the Item
Declaration
public static readonly BindableProperty ItemTemplateProperty
Field Value
Microsoft.
|
VerticalScrollBarLayoutModeProperty
Identifies the Vertical
Declaration
public static readonly BindableProperty VerticalScrollBarLayoutModeProperty
Field Value
Microsoft.
|
VerticalScrollBarStyleProperty
Identifies the Vertical
Declaration
public static readonly BindableProperty VerticalScrollBarStyleProperty
Field Value
Microsoft.
|
VerticalScrollBarTemplateProperty
Identifies the Vertical
Declaration
public static readonly BindableProperty VerticalScrollBarTemplateProperty
Field Value
Microsoft.
|
VerticalScrollBarVisibilityProperty
Identifies the Vertical
Declaration
public static readonly BindableProperty VerticalScrollBarVisibilityProperty
Field Value
Microsoft.
|
Properties
EmptyStyle
Gets or sets the Microsoft.
Declaration
public Style EmptyStyle { get; set; }
Property Value
Microsoft.
|
EmptyTemplate
Gets or sets the Microsoft.
Declaration
public DataTemplate EmptyTemplate { get; set; }
Property Value
Microsoft.
|
HorizontalScrollBarLayoutMode
Gets or sets the layout mode of the horizontal scroll bar.
For more information see the Scroll
Declaration
public ScrollBarLayoutMode HorizontalScrollBarLayoutMode { get; set; }
Property Value
HorizontalScrollBarStyle
Gets or sets the Microsoft.
Declaration
public Style HorizontalScrollBarStyle { get; set; }
Property Value
Microsoft.
|
HorizontalScrollBarTemplate
Gets or sets the Microsoft.
Declaration
public ControlTemplate HorizontalScrollBarTemplate { get; set; }
Property Value
Microsoft.
|
HorizontalScrollBarVisibility
Gets or sets the visibility of the horizontal scroll bar.
For more information see the Microsoft.
Declaration
public ScrollBarVisibility HorizontalScrollBarVisibility { get; set; }
Property Value
Microsoft.
|
IsEmpty
Gets a value indicating whether the control contains no data.
Declaration
public bool IsEmpty { get; }
Property Value
System.
|
ItemHoldingCommand
Gets or sets a command to execute when an item is held. The command accepts a single parameter with the item being held.
Declaration
public ICommand ItemHoldingCommand { get; set; }
Property Value
System.
|
ItemsSource
Gets or sets the collection of items used to populate the control.
Declaration
public IList ItemsSource { get; set; }
Property Value
System.
|
ItemStyle
Gets or sets the Microsoft.
Declaration
public Style ItemStyle { get; set; }
Property Value
Microsoft.
|
ItemStyleSelector
Gets or sets a IStyle
Declaration
public IStyleSelector ItemStyleSelector { get; set; }
Property Value
ItemTappedCommand
Gets or sets a command to execute when an item is tapped. The command accepts a single parameter with the item being tapped.
Declaration
public ICommand ItemTappedCommand { get; set; }
Property Value
System.
|
ItemTemplate
Gets or sets the Microsoft.
Declaration
public DataTemplate ItemTemplate { get; set; }
Property Value
Microsoft.
|
ScrollToCommand
Gets a command that scrolls to an item in the control, which is specified as a parameter.
Declaration
public ICommand ScrollToCommand { get; }
Property Value
System.
|
VerticalScrollBarLayoutMode
Gets or sets the layout mode of the vertical scroll bar.
For more information see the Scroll
Declaration
public ScrollBarLayoutMode VerticalScrollBarLayoutMode { get; set; }
Property Value
VerticalScrollBarStyle
Gets or sets the Microsoft.
Declaration
public Style VerticalScrollBarStyle { get; set; }
Property Value
Microsoft.
|
VerticalScrollBarTemplate
Gets or sets the Microsoft.
Declaration
public ControlTemplate VerticalScrollBarTemplate { get; set; }
Property Value
Microsoft.
|
VerticalScrollBarVisibility
Gets or sets the visibility of the vertical scroll bar.
For more information see the Microsoft.
Declaration
public ScrollBarVisibility VerticalScrollBarVisibility { get; set; }
Property Value
Microsoft.
|
Methods
OnApplyTemplate()
Declaration
protected override void OnApplyTemplate()
Overrides
ScrollTo(Object)
Scrolls the visible area of the control so that the specified item is visible.
Declaration
public void ScrollTo(object dataItem)
Parameters
System. Specifies the item to scroll to. |
Events
ItemHolding
Raised when an item in the control is held.
For more information see the Item
Declaration
public event EventHandler<ItemViewHoldingEventArgs> ItemHolding
Event Type
System.
|
ItemsSourceChanged
Raised when the Items
Declaration
public event EventHandler ItemsSourceChanged
Event Type
System.
|
ItemTapped
Raised when an item in the control was tapped.
For more information see the Item
Declaration
public event EventHandler<ItemViewTappedEventArgs> ItemTapped
Event Type
System.
|