Pascaldietz (Talk | contribs) m (moved RadioButton API Snashot to RadioButton API Snapshot: Typing error) |
Pascaldietz (Talk | contribs) (removed private properties) |
||
| Line 17: | Line 17: | ||
;''alias'' font | ;''alias'' font | ||
:Provides access to the font of the text displayable next to the button. | :Provides access to the font of the text displayable next to the button. | ||
| - | |||
| - | |||
| - | |||
=Signals= | =Signals= | ||
Contents |
This is a radio button. The group property has to be set and it needs to be added to a RadioGroup. All radio buttons in a group need unique values.
-
-
RadioGroup { id: radioGroup }
RadioButton {
id: radioButton
group: radioGroup
value: 1
Component.onCompleted: { radioGroup.add( radioButton ) }
}