RadItemsControl
Represents a control that can be used to present a collection of items.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadItemsControl : RadView, IRadItemsControl, IView, IElement, ITransform
Inheritance: objectRadViewRadItemsControl
Implements:
Inherited Members
Constructors
Initializes a new instance of the RadItemsControl class.
public RadItemsControl()
Fields
ItemsSourceProperty
BindableProperty
Identifies the ItemsSource bindable property.
public static readonly BindableProperty ItemsSourceProperty
ItemTemplateProperty
BindableProperty
Identifies the ItemTemplate bindable property.
public static readonly BindableProperty ItemTemplateProperty
Properties
Gets or sets the data source for generating the content of the items control.
public IList ItemsSource { get; set; }
An IList that serves as the source of items for the control.
ItemTemplate
DataTemplate
Gets or sets the DataTemplate used to display each item.
public DataTemplate ItemTemplate { get; set; }
A DataTemplate that defines the visual structure of items.
Methods
Begins a batch update of the items control.
public void BeginUpdates()
Called when the ItemTemplate property changes.
protected virtual void OnItemTemplateChanged(object oldValue, object newValue)
The old value of the ItemTemplate property.
newValueobjectThe new value of the ItemTemplate property.