gpt4 book ai didi

java - 液体布局..使按钮向右浮动

转载 作者:行者123 更新时间:2023-11-30 07:30:46 24 4
gpt4 key购买 nike

使用此代码,按钮左对齐,但胶水不会展开。我希望按钮 2 和 3 向右浮动。

frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
JPanel panelBottom = new JPanel();
frame.getContentPane().add(panelBottom, BorderLayout.SOUTH);
panelBottom.setLayout(new FlowLayout(FlowLayout.LEFT));

JButton btnNewButton = new JButton("1");
panelBottom.add(btnNewButton);

Component glue = Box.createGlue();
panelBottom.add(glue);

JButton btnNewButton_1 = new JButton("2");
panelBottom.add(btnNewButton_1);

JButton btnNewButton_2 = new JButton("3");
panelBottom.add(btnNewButton_2);

最佳答案

为了使用 glue,您需要使用 BoxLayout。

关于java - 液体布局..使按钮向右浮动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7682066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com