我想在Netbeans上的buttonGroup上定义jRadioButtons的标签位置,以便标签位于其radioButton下.可以吗?
解决方法:
将JRadioButton#setText()与setVerticalTextPosition(SwingConstants.BOTTOM)一起使用.
JRadioButton jrb = new JRadioButton();
jrb.setText("Label");
jrb.setVerticalTextPosition(JRadioButton.BOTTOM);
jrb.setHorizontalTextPosition(JRadioButton.CENTER);