I have a set of RadioButtons, Edits and Labels inside a GroupBox, as in the image below:
I would like the focus on Tab to focus on no RadioButton, but only on Edits, so I thought of changing the TabStop = False
property of all RadioButtons.
Interestingly this property is already standard False
and there is some logic (or bug) where the RadioButton that is Checked = True
always has its operation as with TabStop = True
, and all RadioButtons with Checked = False
function as TabStop = False
.
Would there be a way that TabStop = False
is respected for all RadioButtons, regardless of Checked?