我有一个JFrame,初始化如下:
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
setPreferredSize(PREFERRED_SIZE);
setTitle("Game Set");
setLayout(new BorderLayout());
background = new JLabel(new ImageIcon("images/gameSetBackground.jpg"));
background.setPreferredSize(PREFERRED_SIZE);
add(background);
loginPane = new LoginPane();
background.setLayout(new GridBagLayout());
loginPane.setOpaque(false);
background.add(loginPane, constraints);
pack();
setVisible(true);
我是这样做的,因为它让我将背景设置为我指定的jpg。现在我有了loginPane()类,如下所示:
public class LoginPane extends JPanel {
JLabel label = new JLabel("Login");
JLabel secondLabel = new JLabel("If you don't have a profile, click below to create one!");
JTextField userName;
JPasswordField password;
public LoginPane() {
setLayout(new GridBagLayout());
userName = new JTextField(20);
password = new JPasswordField(20);
constraints.insets = new Insets(2, 2, 2, 2);
constraints.gridx = 0;
constraints.gridy = 0;
add(label, constraints);
// etc add all of them the same way
constraints.gridy = 3;
add(secondLabel, constraints);
userName.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
password.requestFocus();
}
});
password.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (userName.getText().equals("Mike")) {
}
}
});
}
}
我想要发生的是当我输入用户名和密码后点击输入时,我会检查这是否是有效的用户名/密码对。之后我想删除所有内容并显示不同的JPanel
。在password.ActionListener中,我尝试了以下内容:
loginPane.removeAll();
background.removeAll();
这是两个独立的案例,但两者都导致JFrame崩溃,TextFields变得无法响应,我不得不退出。我做错了什么?
答案 0 :(得分:3)
“尝试用其他面板替换面板时JFrame崩溃”
简单/正确的解决方案是使用CardLayout
在面板之间切换。请参阅How to use CardLayout上的详情,并查看一个简单示例here。
CardLayout
的方法有show()
来显示某个名称小组,next()
显示下一个小组,previous()
显示上一个小组。这是首选方法,而不是删除和添加面板。