我刚开始使用 BoxLayout 管理器。
我已经制作了两个相邻的按钮,第三个应该转到下一行(前两个下方),前两个按钮应该在框架的顶部。
我怎样才能做到这一点?
这是我当前的代码
Box box = Box.createHorizontalBox();
box.add(Box.createHorizontalGlue());
box.add(new JButton("Button"));
box.add(new JButton("Hello"));
box.add(Box.createVerticalBox());
box.add(Box.createVerticalStrut(100));
box.add(new JButton("Button2"));
add(box);