有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java如何在JRadioButton上垂直对齐文本和图像?

是否可以将JRadioButton图标上方的文本和图像对齐

编辑-
显然,在构造函数中设置图标实际上会替换默认的JRadioButton图标,这是我没有预料到的。看起来我可能需要使用两个独立的组件,并将它们扔进同一个容器中


共 (2) 个答案

  1. # 1 楼答案

    这将在JRadioButton上方设置文本:

    radiobutton.setHorizontalTextPosition(SwingConstants.CENTER);
    radiobutton.setVerticalTextPosition(JRadioButton.TOP);
    

    是的,使用setIcon方法可以替换JRadioButton图标

  2. # 2 楼答案

    JRadioButton radioB = new JRasioButton (...);
    
    radioB.setVerticalTextPosition(JLabel.BOTTOM);