您如何在流布局中组织对象?

时间:2018-08-18 23:28:25

标签: java swing oop user-interface flowlayout

我想创建一个jframe,其左边的文本(JLabel)和右边的按钮。我首先添加了文本,并希望尽量不要将框架设置为从右到左。

EndFrame代码...使用来自其他类的信息,并且其他类更新JLabel。

public class endFrame extends JFrame
{
public endFrame()
{
    setSize(500,75);
    setLayout(new FlowLayout());
    add(board.winner);
    JButton r = new JButton("Reset");
    r.addActionListener(board.mouse);
    add(r);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setLocationRelativeTo(null);
}
}

1 个答案:

答案 0 :(得分:1)

MadProgrammer向我展示了使用Container#add(Comonent,int)允许您按照所需的正确顺序移动对象。