Class RadRatingBase
Encapsulates common RadRating logic.
Inherited Members
Namespace: Telerik.Maui.Controls.Compatibility.Input
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public abstract class RadRatingBase : RadLayout
Constructors
RadRatingBase()
Declaration
protected RadRatingBase()
Fields
IsReadOnlyProperty
Identifies the IsReadOnly property.
Declaration
public static readonly BindableProperty IsReadOnlyProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ItemsCountProperty
Identifies theItemsCount property.
Declaration
public static readonly BindableProperty ItemsCountProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ItemsSpacingProperty
Identifies the ItemsSpacing property.
Declaration
public static readonly BindableProperty ItemsSpacingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ValueProperty
Identifies the Value property.
Declaration
public static readonly BindableProperty ValueProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
IsReadOnly
Gets or sets a boolean value indicating if the control supports user interaction.
Declaration
public bool IsReadOnly { get; set; }
Property Value
System.Boolean
The value. |
ItemsCount
Gets or sets the number of the visualized items.
Declaration
public int ItemsCount { get; set; }
Property Value
System.Int32
The count. |
ItemsSpacing
Gets or sets the space between the separate RadRating items.
Declaration
public double ItemsSpacing { get; set; }
Property Value
System.Double
The space. |
Value
Gets or sets the RadRating.
Declaration
public double Value { get; set; }
Property Value
System.Double
The RadRating. |
Events
ValueChanged
Occurs when the Value property of the control has changed.
Declaration
public event EventHandler<ValueChangedEventArgs> ValueChanged
Event Type
System.EventHandler<Microsoft.Maui.Controls.ValueChangedEventArgs>
|