Class RadSegmentedControl
Inherited Members
Namespace: Telerik.XamarinForms.Input
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public class RadSegmentedControl : RadView, INotifyNativeControlLoaded
Constructors
RadSegmentedControl()
Declaration
public RadSegmentedControl()
Fields
DisabledSegmentTextColorProperty
Identifies the DisabledSegmentTextColor property.
Declaration
public static readonly BindableProperty DisabledSegmentTextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
ItemsSourceProperty
Identifies the ItemsSource property.
Declaration
public static readonly BindableProperty ItemsSourceProperty
Field Value
Xamarin.Forms.BindableProperty
|
SegmentBackgroundColorProperty
Identifies the SegmentBackgroundColor property.
Declaration
public static readonly BindableProperty SegmentBackgroundColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
SegmentTextColorProperty
Identifies the SegmentTextColor property.
Declaration
public static readonly BindableProperty SegmentTextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectedIndexProperty
Identifies the SelectedIndex property.
Declaration
public static readonly BindableProperty SelectedIndexProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectedSegmentBackgroundColorProperty
Identifies the SelectedSegmentBackgroundColor property.
Declaration
public static readonly BindableProperty SelectedSegmentBackgroundColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
SelectedSegmentTextColorProperty
Identifies the SelectedSegmentTextColor property.
Declaration
public static readonly BindableProperty SelectedSegmentTextColorProperty
Field Value
Xamarin.Forms.BindableProperty
|
Properties
DisabledSegmentTextColor
Gets or sets the Text Color of the disabled segment.
Declaration
public Color DisabledSegmentTextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
ItemsSource
Gets or sets the ItemsSource of the control.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable
|
SegmentBackgroundColor
Gets or sets the background of the segment.
Declaration
public Color SegmentBackgroundColor { get; set; }
Property Value
Xamarin.Forms.Color
|
SegmentTextColor
Gets or sets the Text Color of the segment.
Declaration
public Color SegmentTextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
SelectedIndex
Gets or sets the index of the item to be selected.
Declaration
public int SelectedIndex { get; set; }
Property Value
System.Int32
|
SelectedSegmentBackgroundColor
Gets or sets the background of the selected segment.
Declaration
public Color SelectedSegmentBackgroundColor { get; set; }
Property Value
Xamarin.Forms.Color
|
SelectedSegmentTextColor
Gets or sets the Text Color of the selected segment.
Declaration
public Color SelectedSegmentTextColor { get; set; }
Property Value
Xamarin.Forms.Color
|
Methods
IsSegmentEnabled(Int32)
Declaration
public bool IsSegmentEnabled(int index)
Parameters
System.Int32
index
|
Returns
System.Boolean
|
OnNativeControlLoaded()
Declaration
protected override void OnNativeControlLoaded()
Overrides
SetSegmentEnabled(Int32, Boolean)
Declaration
public void SetSegmentEnabled(int index, bool isEnabled)
Parameters
System.Int32
index
|
System.Boolean
isEnabled
|
Events
SelectionChanged
Declaration
public event EventHandler<ValueChangedEventArgs<int>> SelectionChanged
Event Type
System.EventHandler<ValueChangedEventArgs<System.Int32>>
|