Class RadioCell
A Cell with a label and a RadioButton.
Namespace: Tizen.Wearable.CircularUI.Forms
Assembly: Tizen.Wearable.CircularUI.Forms.dll
Syntax
public class RadioCell : Cell
Constructors
RadioCell()
Declaration
public RadioCell()
Fields
GroupNameProperty
Identifies the GroupName bindable property.
Declaration
public static readonly BindableProperty GroupNameProperty
Field Value
Type | Description |
---|---|
BindableProperty |
OnProperty
Identifies the On bindable property.
Declaration
public static readonly BindableProperty OnProperty
Field Value
Type | Description |
---|---|
BindableProperty |
TextProperty
Identifies the Text bindable property.
Declaration
public static readonly BindableProperty TextProperty
Field Value
Type | Description |
---|---|
BindableProperty |
Properties
GroupName
Gets or sets the group name of the radio button. This is a bindable property.
Declaration
public string GroupName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
On
Gets or sets the state of the radio button. This is a bindable property.
Declaration
public bool On { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Text
Gets or sets the text displayed next to the radio button. This is a bindable property.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Events
OnChanged
Triggered when the radio button has changed value.
Declaration
public event EventHandler<CheckedChangedEventArgs> OnChanged
Event Type
Type | Description |
---|---|
System.EventHandler<CheckedChangedEventArgs> |