I need to have selection from several options that I expect to achieve with Qt RadioButton. What is the best way to make menu from several RadioButons in Qt widget application?
Hi
Put them in a QGroupBox if u want them to be exclusive. (only one selected)
If one or more can be selected, then QCheckBox is the one to use.
QRadioButton is for zero or 1 selections. Not multiple unless the radios are in
multiple groups.