我目前正在尝试开发简单的游戏,但在制作游戏菜单时遇到了一些麻烦。我对游戏菜单中的每个状态(例如指令或选项)使用 JPanel,并在父 JFrame 中有方法根据用户在菜单上单击的项目对它们进行洗牌。
我的代码是这样的(没有一些简单的方法,如 setSize() 或 setVisible() )。
public class Game extends JFrame{
private JPanel mainPanel = new MainPanel();
private JPanel helpPanel; = new HelpPanel();
private JPanel optionPanel = new OptionPanel();
private JPanel currentPanel = new JPanel();
public Game(){
add(currentPanel);
}
public void changePanel(int destination){
remove(currentPanel);
if(destination==MAIN_PANEL)
currentPanel = mainPanel;
else if(destination==HELP_PANEL)
currentPanel = helpPanel;
else if(destination==OPTION_PANEL)
currentPanel = optionPanel;
add(currentPanel);
}
一切正常,除非我尝试在 mouselistener 中使用 changePanel 方法,但它没有任何响应。然后我尝试一些像这样的简单方法。
....
public void mouseClicked(MouseEvent e) {
removeAll();
JOptionPane.showConfirmDialog(null, "Pop when click anywhere.");
}
....
我希望我的 JFrame 会被清除并弹出对话框。该对话框确实会弹出,但对于 JFrame。我的问题是如何使用 mouselistener 中的那些简单方法。
对不起我糟糕的英语。我现在正在学习 Java 和英语。