如何在流式布局中组织对象?
How do you organize objects in a flow layout?
我想要一个 jframe,左边是文本 (JLabel),右边是按钮。我先添加了文本,想尽量不要将框架设置为从右到左。
EndFrame 代码 ... 使用来自其他 class 和其他 classes 的信息更新 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);
}
}
Mad Programmer 向我展示了使用 Container#add(Component, into) 允许您以所需的正确顺序移动对象。
我想要一个 jframe,左边是文本 (JLabel),右边是按钮。我先添加了文本,想尽量不要将框架设置为从右到左。
EndFrame 代码 ... 使用来自其他 class 和其他 classes 的信息更新 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);
}
}
Mad Programmer 向我展示了使用 Container#add(Component, into) 允许您以所需的正确顺序移动对象。