我正在创建一个包含两个按钮的JToolBar窗口。一个是常规JButton,另一个是BasicArrowButtonjavax.swing.plaf.basic.BasicArrowButton)。如果不进行任何其他配置,JButton不会在工具栏中展开,但是BasicArrowButton会展开以占据完整的工具栏。

我试图通过将其最大和首选尺寸设置为16x16,将其配置为适合16x16的小正方形。但这是行不通的。也尝试使用setSize()失败。谁能告诉我问题出在哪里?

我还尝试过在BasicArrowButton右侧使用水平胶水(我在Eclipse中使用WindowBuilder)。那也不起作用。

我正在使用JDK1.7.0_07。

public class ToolbarTest {

    private JFrame frame;

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    ToolbarTest window = new ToolbarTest();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public ToolbarTest() {
        initialize();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JToolBar toolBar = new JToolBar();
        frame.getContentPane().add(toolBar, BorderLayout.NORTH);

        JButton btnEdit = new JButton("Edit");
        toolBar.add(btnEdit);

        //------------------------------------------------------------
        JButton btnUp = new BasicArrowButton(BasicArrowButton.NORTH);
        btnUp.setSize(new Dimension(16, 16));
        btnUp.setMaximumSize(new Dimension(16, 16));
        toolBar.add(btnUp);
        //------------------------------------------------------------
    }
}

最佳答案

在内部,JToolBar使用DefaultToolBarLayoutBoxLayout的子类)。您可以使用setLayout()替换您自己的。 FlowLayout可能是合适的选择:

JToolBar bar = new JToolBar("Edit Menu");
bar.setLayout(new FlowLayout(FlowLayout.LEFT));

10-02 05:51