Interface IRadSegmentedControl
Displays a list of horizontally aligned, mutually exclusive options, which can be selected by the user.
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public interface IRadSegmentedControl : IView, IElement, ITransform
Properties
DisabledSegmentTextColor
Gets the text color of the disabled segment.
Declaration
Color DisabledSegmentTextColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
ItemsSource
Gets the collection of items of the control.
Declaration
IEnumerable ItemsSource { get; }
Property Value
System.Collections.IEnumerable
|
SegmentBackgroundColor
Gets the background color of the segment.
Declaration
Color SegmentBackgroundColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
SegmentTextColor
Gets the text color of the segment.
Declaration
Color SegmentTextColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
SelectedIndex
Gets or sets the index of the selected item.
Declaration
int SelectedIndex { get; set; }
Property Value
System.Int32
|
SelectedSegmentBackgroundColor
Gets the background color of the selected segment.
Declaration
Color SelectedSegmentBackgroundColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|
SelectedSegmentTextColor
Gets the text color of the selected segment.
Declaration
Color SelectedSegmentTextColor { get; }
Property Value
Microsoft.Maui.Graphics.Color
|