将 JRadioButtons 放在 ButtonGroup 的新行中?
Put JRadioButtons in new rows in ButtonGroup?
有没有办法将 JRadioButtons 放在 ButtonGroups 的新行上?我不是说每行有 1 个按钮,而是例如一行有 2 个按钮,下一行有 2 个按钮,但每个都在同一组中,例如:
o Button one o Button two
o Button three o Button four
全部在一组中,在一个面板中居中。
您可以在 GridLayout
或 GridBagLayout
中添加单选按钮,同时将 JRadioButtons
添加到 ButtonGroup
。
有没有办法将 JRadioButtons 放在 ButtonGroups 的新行上?我不是说每行有 1 个按钮,而是例如一行有 2 个按钮,下一行有 2 个按钮,但每个都在同一组中,例如:
o Button one o Button two
o Button three o Button four
全部在一组中,在一个面板中居中。
您可以在 GridLayout
或 GridBagLayout
中添加单选按钮,同时将 JRadioButtons
添加到 ButtonGroup
。