JFrame - 设置位置/边界?

时间:2013-09-01 14:03:17

标签: java swing jframe

我正在尝试添加JButton,但它与进度条水平对齐。 如何在下面的行上对齐JButton?
此外,我正在尝试将所有组件分组在不同的组中,但我不知道如何执行此操作。有谁知道吗?

Like this, I think this is from the Docs but I can't get it to work. Nothing is displayed.

1 个答案:

答案 0 :(得分:1)

对于JFrame的简单拆分,您可以使用包含2行和2列的GridLayout

frame.setLayout(new GridLayout(2,2,3,3)); //3,3 are gaps
frame.add(grid);
//add components here...