皆さん、こんにちは
プロジェクトのメインメニューをコーディングしています。メニューは正常に表示されます。メニューの 3 つのボタンの ActionListeners もセットアップしました。
私がやりたいことは、ユーザーが「新しいゲームを開始する」を選択したときに、ラジオ ボタンの新しいセットに JPanel を再利用することです。
しかし、JPanel から既存のコンポーネントを削除するために ActionPerformed をコーディングすると、困惑してしまいます。removeAll が何らかの形で重要であることは知っていますが、残念ながら NetBeans から、ActionPerformed 内の mainMenu JPanel オブジェクトでそれを呼び出せないことが通知されます。そのため、以下のコードでコメントアウトしましたが、残したままにして、私が何をしようとしているのかを確認してください。
あなたの考えやヒントは大歓迎です。
ここに私のメインコードがあります:
public class Main {
public static void main(String[] args) {
MainMenu menu = new MainMenu();
menu.pack();
menu.setVisible(true);
}
}
ここに私のmainMenuコードがあります:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class MainMenu extends JFrame implements ActionListener {
JButton startNewGame = new JButton("Start a New Game");
JButton loadOldGame = new JButton("Load an Old Game");
JButton seeInstructions = new JButton("Instructions");
public MainMenu() {
super("RPG Main Menu");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel mainMenu = new JPanel();
mainMenu.setLayout(new FlowLayout());
startNewGame.setMnemonic('n');
loadOldGame.setMnemonic('l');
seeInstructions.setMnemonic('i');
startNewGame.addActionListener(this);
loadOldGame.addActionListener(this);
seeInstructions.addActionListener(this);
mainMenu.add(startNewGame);
mainMenu.add(loadOldGame);
mainMenu.add(seeInstructions);
setContentPane(mainMenu);
}
public void actionPerformed(ActionEvent evt) {
Object source = evt.getSource();
if (source == startNewGame) {
// StartNewGame code goes here
// mainMenu.removeAll();
}
if (source == loadOldGame) {
// LoadOldGame code goes here
}
if (source == seeInstructions) {
// Quit code goes here
}
}
}