6

マインスイーパ ゲームに変更を実装しています。これらのことの1つは困難です。私はこれとその作業を行うことができましたが、ゲームボード (独自の Jpanel 内) が (難易度に応じて) 大きくなったり小さくなったりすると、JFrame を自動的にサイズ変更できません。私は使っている:

setPreferredSize(new Dimension(WIDTH, HEIGHT));

ウィンドウの初期サイズを設定するには 手動でサイズを変更する必要があります。

ActionListener イベントで setSize() や frame.pack() などを試しましたが、サイズを変更できないようです。

使用するコード/メソッドに関するヒント。

編集:投稿されたコード

package mines;

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

public class SetupFrame extends JFrame {

    private final int WIDTH = 600;
    private final int HEIGHT = 500;
    public JFrame frame;
    public JMenuBar menubar;
    public JMenu file;
    public JMenu levels;
    public JMenu help;
    public JMenuItem login;
    public JMenuItem save;
    public JMenuItem resume;
    public JMenuItem exit;
    public JMenuItem easy;
    public JMenuItem medium;
    public JMenuItem hard;
    private JLabel statusbar;
    public JPanel main;
    public JPanel buttonPanel;
    public JPanel saved;
    public JPanel game;
    public Board mineGame;
    public JButton ngButton;
    public JButton undoButton;
    public JButton redoButton;
    public JTabbedPane tp;
    public String[] levelPicker;
    public JComboBox levelSelect;
    public JFileChooser chooser;
    public String filename;

    public int difficulty;

    public SetupFrame(){

      frame = new JFrame();

      String filename = JOptionPane.showInputDialog(frame, "Enter Your Name.");

      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);


      setLocationRelativeTo(null);
      setTitle("Minesweeper");

      //menubar, menus, menu items
      menubar = new JMenuBar();
      setJMenuBar(menubar);

      file = new JMenu("File");
      help = new JMenu("Help");

      menubar.add(file);
      menubar.add(help);

      login = new JMenuItem("Login..");
      save = new JMenuItem("Save..");
      resume = new JMenuItem("Resume..");
      exit = new JMenuItem("Exit");

      file.add(login);
      file.add(save);
      file.add(resume);
      file.addSeparator();
      file.add(exit);

      statusbar = new JLabel("");



      chooser = new JFileChooser(); // new File Chooser for saved tab
      undoButton = new JButton(" Undo "); //undo Button for game panel 
      ngButton = new JButton(" New Game ");//new game Button for game panel
      redoButton = new JButton(" Redo");//redo Button for game panel

      main = new JPanel(new BorderLayout()); //new panel for main game
      //main.add(mineGame, BorderLayout.CENTER); //add instance mineGame to main panel

      game = new JPanel(new BorderLayout());// new panel for game tab
      main.add(game, BorderLayout.CENTER); //add the mineGames panel to game panel
      game.add(statusbar, BorderLayout.SOUTH); //add statusbar to bottom of game panel
            //game.add(button, BorderLayout.NORTH); // add buttons (eventually be redo, undo, new game)

      saved = new JPanel(); // create new panel for the saved tab
      saved.add(chooser);//add the File Chooser to the saved tab

      String[] levelPicker = {"Easy", "Medium", "Hard"};
      levelSelect = new JComboBox(levelPicker);
      levelSelect.setSelectedIndex(0);
            //levelSelect.addActionListener(this);

       buttonPanel = new JPanel();
       buttonPanel.add(undoButton);
       buttonPanel.add(ngButton);
       buttonPanel.add(redoButton);
       buttonPanel.add(levelSelect);
       main.add(buttonPanel, BorderLayout.NORTH);

       //create & add the tabs
       tp = new JTabbedPane();
       tp.addTab ("Game", main);
       tp.addTab ("Saved", saved);
       tp.addTab ("Statistics", null);
       add(tp);

       setPreferredSize(new Dimension(WIDTH, HEIGHT));
       setResizable(true);
       setVisible(true);
       frame.pack();


        class listener implements ActionListener{
            public void actionPerformed (ActionEvent e)
            {   
                if(e.getSource() == ngButton){
                    //JOptionPane.showInputDialog(frame, "Do You want To Save");
                    newMineGame();
                }
                JComboBox cb = (JComboBox)e.getSource();
                String picker = (String)cb.getSelectedItem();
                if (picker == "Easy"){
                    difficulty = 0;
                    newMineGame();
                }
                if (picker == "Medium"){
                    difficulty = 1;
                    newMineGame();
                    frame.pack();
                }
                if (picker == "Hard"){
                    difficulty = 2;
                    newMineGame();
                    frame.pack();
                }
            }


            private void newMineGame() {
                game.removeAll();
                mineGame = new Board(statusbar, difficulty);
                game.add(mineGame, BorderLayout.CENTER);
                game.add(statusbar, BorderLayout.SOUTH);
                repaint();
            }

        }

        ngButton.addActionListener(new listener());
        undoButton.addActionListener(new listener());
        redoButton.addActionListener(new listener());
        levelSelect.addActionListener(new listener());


    }

public static void main(String[] args) {
        new SetupFrame();

    }
4

2 に答える 2

10

これらのことの1つは困難です。私はこれとその作業を行うことができましたが、ゲームボード (独自の Jpanel 内) が (難易度に応じて) 大きくなったり小さくなったりすると、JFrame を自動的にサイズ変更できません。

ActionListener イベントで setSize() や frame.pack() などを試しましたが、サイズを変更できないようです。

  • JFrame.pack()場合に動作します

    1. すべてのJComponents代表的な地雷 ( を使用する最良の方法がありますJToggleButton) が適切PreferredSizeにその親 ( JPanel)に戻ること

    2. GridLayout によって配置された親 (JPanel) (非常に単純)

    3. いつ、どこで、どのようにJFrame.pack()

      • use CardLayout、切り替え後の次のコード行CardJFrame.pack()

      • JPanel(から)古いものを削除し、新しいものに置き換えてから、最後のコード行としてJFrameを呼び出す必要がありますJFrame.(re)validate()JFrame.repaint()JFrame.pack()

  • 別の問題がある可能性があります。重要なのは、設定がある場合のコードの順序です。JFrame.setResizable(false);


編集後

  • カードレイアウトを使用する

  • そこにコード行がありません( extends しないJFrameで、このオブジェクトを as として作成してくださいLocal variableJFrame.(re)validate()JFrame.repaint()およびJFrame.pack()最後のコード行としてprivate void newMineGame() {


しかし、私はあなたが何を意味するのか理解できません:「コード行がありません(JFrameを拡張しないでください、このオブジェクトをローカル変数として作成してください)

コードは

import javax.swing.*;

public class SetupFrame {

    private JFrame frame;
    private JMenuBar menubar = new JMenuBar();
    private Board mineGame;

    public SetupFrame() {
        //there add required JComponents

        frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocationRelativeTo(null);
        frame.setTitle("Minesweeper");
        frame.setJMenuBar(menubar);
        frame.add(mineGame);
        //frame.setPreferredSize(new Dimension(WIDTH, HEIGHT));
        //frame.setResizable(true);//not neccessary
        frame.pack();
        frame.setVisible(true);
    }

    private void newMineGame() {
        //remove old Board
        //add a new Board
        frame.validate();
        frame.repaint();
        frame.pack();
    }

    private static void main(String[] args) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                new SetupFrame();
            }
        });
    }
}
于 2013-10-04T12:03:36.903 に答える
7

これがあなたの間違いです:

frame.pack();

実際に から拡張してframeいる場合、なぜ必要なのですか? この行を変更するだけで機能します。SetupFrameJFramepack()

@mKorbel は、動作に関する完全で非常に役立つ説明を既に投稿していpack()ます (ありがとう)。

アップデート

また、あなたのクラスでは、 aが押されlistenerたときにこの例外が発生します:JButton

java.lang.ClassCastException: javax.swing.JButton cannot be cast to javax.swing.JComboBox

これを回避するには、次の小さな変更を加える必要があります。

class listener implements ActionListener{

    public void actionPerformed (ActionEvent e) {
        if(e.getSource() == ngButton){
            //JOptionPane.showInputDialog(frame, "Do You want To Save");
            newMineGame();
        } else if(e.getSource() instanceof JComboBox){ // add this else-if block
            JComboBox cb = (JComboBox)e.getSource();
            String picker = (String)cb.getSelectedItem();
            if (picker.equals("Easy")){ // <-- picker == "Easy" is not the proper way to compare string, use equals() method instead
                difficulty = 0;
                newMineGame();
            }
            if (picker.equals("Medium")){
                difficulty = 1;
                newMineGame();
                //frame.pack();  <--- again, just use pack();
                pack();
            }
            if (picker.equals("Hard")){
                difficulty = 2;
                newMineGame();
                //frame.pack();  <--- again, just use pack();
                pack();
            }
        }
    }

または、代わりにItemListenerを実装して、選択の変更をリッスンします。JComboBoxActionListener

于 2013-10-04T12:07:29.063 に答える