java – 如何在Netbeans上定义jRadioButton的标签位置?

我想在Netbeans上的buttonGroup上定义jRadioButtons的标签位置,以便标签位于其radioButton下.可以吗?

解决方法:

将JRadioButton#setText()与setVerticalTextPosition(SwingConstants.BOTTOM)一起使用.

JRadioButton jrb = new JRadioButton();
jrb.setText("Label");
jrb.setVerticalTextPosition(JRadioButton.BOTTOM);
jrb.setHorizontalTextPosition(JRadioButton.CENTER);
上一篇:TypeScript 简单快速上手


下一篇:TS 3.1 - 类