单击菜单按钮时,尝试在其中显示带有文本的框架

时间:2013-12-01 03:18:08

标签: java swing jframe actionlistener jmenu

当用户点击标题为“规则”的菜单按钮时,我正在尝试在框架中显示一个文本块。当我点击规则时,显示什么都没有显示。

所以我的问题是,当我点击规则时为什么没有显示。 我认为将ActionListener添加到规则意味着当单击规则时,它将弹出一个标题为“Rules”的新框架,并且在框架内会出现一条消息“在这里写规则......”。

这是我的代码:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;


public class CheckerProgram{
    public static int rows = 8;
    public static int columns = 8;
    public static Color color1 = Color.BLACK;
    public static Color color2 = Color.RED;

    public static void main( String[] args ){
        JFrame window = new JFrame("Checkers");
        window.setSize( 800, 800 );
        window.setTitle("Checkers!");
        Container pane = window.getContentPane();
        pane.setLayout(new GridLayout(rows, columns));
        window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

        Color temp;
        for( int i=0; i<rows; i++ ){
            if( i%2 == 0 ){
                temp = color1;
            }
            else{
                temp = color2;
            }

            for( int j=0; j<columns; j++ ){
                JPanel panel = new JPanel();
                panel.setBackground(temp);

                if( temp.equals(color1)){
                    temp = color2;
                }
                else{
                    temp = color1;
                }

                pane.add(panel);
            }
        }
        window.setVisible(true);

        JMenuBar menuBar = new JMenuBar();
        window.setJMenuBar(menuBar);

        // Display options ex, new game, surrender, close game.
        JMenu options = new JMenu("Options");
        menuBar.add(options);
        JMenuItem newGame = new JMenuItem("New Game");
        JMenuItem surrender = new JMenuItem("Surrender");
        JMenuItem closeGame = new JMenuItem("Close Game");
        options.add(newGame);
        options.add(surrender);
        options.add(closeGame);

        // Action button for Close Game under Options menu
        class closeGameAction implements ActionListener{
            public void actionPerformed( ActionEvent e ){
                System.exit(0);
            }
        }
        closeGame.addActionListener( new closeGameAction() );

        // Display scores for both players
        JMenu scores = new JMenu("Scores");
        menuBar.add(scores);

        // Display rules for game
        JMenu rules = new JMenu("Rules");
        menuBar.add(rules);
        rules.addActionListener( new rulesAction() );


    } // End of main


    static class rulesAction implements ActionListener{
            public void actionPerformed( ActionEvent e ){
                JFrame displayRules = new JFrame("Rules");
                displayRules.setVisible(true);
                displayRules.setSize( 300, 300 );
                JLabel label = new JLabel("Write rules here...");
                JPanel panel = new JPanel();
                panel.add(label);
                displayRules.add(panel);

            }
     }
}

这是主框架的屏幕截图。所以那里有一个名为“规则”的菜单选项,当我点击它没有任何反应时。

enter image description here

3 个答案:

答案 0 :(得分:4)

rules是JMenu:

JMenu rules = new JMenu("Rules");

我认为你的意思是它是一个JMenuItem。

您还应该考虑使用JDialog来显示规则。见"The Use of Multiple JFrames, Good/Bad Practice?"

一般情况下,您还应该在创建之后设置可见的内容。当我在OSX上运行它时,菜单栏不会出现而且(松散地),因为您在添加条形图之前将JFrame设置为可见。

答案 1 :(得分:3)

您需要一个JMenuItem来提示窗口。

JMenu rules = new JMenu("Rules");
JMenuItem jmiRules = new JMenuItem("Rules");
rules.add(jmiRules);
menuBar.add(rules);
jmiRules.addActionListener( new rulesAction() );

同时将displayRules.setVisible(true);放在actionPerformed的末尾,以便在显示之前添加所有内容

同时将window.setVisible(true);放在main的末尾。它导致了menuBar的延迟。在屏幕可见之前,您应该添加所有组件。

答案 2 :(得分:2)

JMenu不支持ActionListener(即使addActionListener()方法有效)。

因此,您需要向JMenu添加MouseListener以处理鼠标单击,否则您需要将“规则”显示为另一个JMenu的菜单项。