带有垂直文本的Java swing单选按钮

时间:2019-07-07 16:00:21

标签: java swing

尝试通过swing获取类似于Java的单选按钮:

 *  *  *
 O  A  O
 F  U  N
 F  T
    O

...其中*是单选按钮

字母可以是右侧,也可以是右侧,我不在乎。我只希望在顶部的按钮和每个按钮下面的字母在狭窄的栏中。

尝试使用paint()方法旋转图形,但是当我将鼠标悬停在图形上时,它会混乱,重新绘制按钮而不旋转。似乎我需要的是类似BoxLayout的东西,但它也会旋转90度。或者在JPanel和按钮之间的另一层。

public class OffAutoOn extends JPanel {

    public OffAutoOn ()
    {
        JRadioButton b1 = new JRadioButton ("OFF");
        JRadioButton b2 = new JRadioButton ("AUTO");
        JRadioButton b3 = new JRadioButton ("ON");

        ButtonGroup bg = new ButtonGroup ();
        bg.add (b1);
        bg.add (b2);
        bg.add (b3);

        setLayout (new BoxLayout (this, BoxLayout.Y_AXIS));
        add (b1);
        add (b2);
        add (b3);
    }

    @Override
    public void paint (Graphics g)
    {
        Graphics2D g2d = (Graphics2D) g;
        AffineTransform at = g2d.getTransform ();
        try {
            int w = getWidth ();
            int h = getHeight ();
            g2d.rotate (Math.PI / 2, w / 2, h / 2);
            super.paint (g);
        } finally {
            g2d.setTransform (at);
        }
    }
}

1 个答案:

答案 0 :(得分:1)

您可以使用HTML为按钮创建垂直文本,然后可以更改文本相对于图标的默认位置。

例如:

String text = "<html>A<br>u<br>t<br>o</html";
JRadioButton button = new JRadioButton( text );
button.setHorizontalTextPosition(JRadioButton.CENTER);
button.setVerticalTextPosition(JRadioButton.BOTTOM);