我想在Netbeans的buttonGroup上定义单选按钮的标签位置,以便将标签放置在其radioButton下。能做到吗

最佳答案

结合使用JRadioButton#setText()setVerticalTextPosition(SwingConstants.BOTTOM)

JRadioButton jrb = new JRadioButton();
jrb.setText("Label");
jrb.setVerticalTextPosition(JRadioButton.BOTTOM);
jrb.setHorizontalTextPosition(JRadioButton.CENTER);

关于java - 如何在Netbeans上定义jRadioButton的标签位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15954603/

10-09 05:39