RadRatingBase
Encapsulates common RadRating logic.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public abstract class RadRatingBase : RadLayout
Inheritance: objectRadLayoutRadRatingBase
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the RadRatingBase class.
protected RadRatingBase()
Fields
IsReadOnlyProperty
BindableProperty
Identifies the IsReadOnly property.
public static readonly BindableProperty IsReadOnlyProperty
ItemsCountProperty
BindableProperty
Identifies theItemsCount property.
public static readonly BindableProperty ItemsCountProperty
ItemsSpacingProperty
BindableProperty
Identifies the ItemsSpacing property.
public static readonly BindableProperty ItemsSpacingProperty
ValueProperty
BindableProperty
Identifies the Value property.
public static readonly BindableProperty ValueProperty
Properties
Gets or sets a boolean value indicating if the control supports user interaction.
public bool IsReadOnly { get; set; }
The value.
Gets or sets the number of the visualized items.
public int ItemsCount { get; set; }
The count.
Gets or sets the space between the separate RadRating items.
public double ItemsSpacing { get; set; }
The space.
Events
ValueChanged
EventHandler<ValueChangedEventArgs>
Occurs when the Value property of the control has changed.
public event EventHandler<ValueChangedEventArgs> ValueChanged