这是我的 Layout 类的代码。
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class Layout extends JFrame {
private JButton lb;
private JButton cb;
private JButton pb;
private FlowLayout layout;
private Container container;
public Layout() {
super("The Title");
layout = new FlowLayout();
container = new Container();
setLayout(layout);
//*Left
lb = new JButton("L");
add(lb);
lb.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
layout.setAlignment(FlowLayout.LEFT);
layout.layoutContainer(container);
}
}
);
//*Center
cb = new JButton("C");
add(cb);
cb.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
layout.setAlignment(FlowLayout.CENTER);
layout.layoutContainer(container);
}
}
);
//*Right
pb = new JButton("R");
add(pb);
pb.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent event){
layout.setAlignment(FlowLayout.RIGHT);
layout.layoutContainer(container);
}
}
);
}
}
我正在通过newboston youtube 教程学习java(此代码来自本教程)。但这并不像它应该的那样工作。当我单击右键 (R) 时,它应该立即将所有按钮拖到窗口的右侧。它没有。但是,当我单击该右键然后强制调整窗口大小时,它会执行应有的操作。通过在 main 方法中添加 setResizable(false),我无法调整程序的大小,因此它不起作用。我做错了什么?
原谅我英语不好顺便说一句。