0
我剛開始搞亂BoxLayout經理。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);