有没有办法将JRadioButtons放在ButtonGroups的新行上?我并不是说每行有1个按钮,但例如,一行中有2个按钮,下一行有2个按钮,但是例如,在同一组中的每个按钮都是这样的:
o Button one o Button two
o Button three o Button four
全部集中在一个小组中。
最佳答案
您可以在GridLayout
或GridBagLayout
中添加单选按钮,同时也可以在JRadioButtons
中添加ButtonGroup
。
关于java - 将JRadioButtons放在ButtonGroup的新行中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28667034/