BoxLayout マネージャーをいじり始めたところです。
2 つのボタンを並べて作成しました。3 つ目のボタンは次の行 (最初の 2 つの下) に移動し、最初の 2 つのボタンはフレームの上部に配置する必要があります。
どうすればこれを達成できますか?
これは私の現在のコードです
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);