The help indicates that adding gboGroupStyle to the ButtonOptions on a TButtonGroup "Specifies that the buttons should inherit the group style that is set on the container." But this explanation still leaves me lost - any ideas?
|
feedback
|
|
The Setting of the
I agree the name of this is quite misleading, but that's what I found in the source code from Delphi-XE2. | |||||
feedback
|
|
gboGroupStyle makes the TButtonGroup act as a group - that means, one and only one button is selected at a given time. It is similar to grouping several TSpeedButtons with the GroupIndex, where only one button inside that group is selected at any time. The currently selected button can be read and written via the ItemIndex property of TButtonGroup. To visualize the selected button one can implement an OnBeforeDrawButton or OnDrawButton handler. | |||||||
feedback
|
|
From my experimentation it looks like if gboGroupStyle is used then the ItemIndex property can be set to something other than -1, so that the TButtonGroup remembers the last button that was pressed. | |||
|
feedback
|