将JMenu添加到JPanel

时间:2013-02-08 11:21:47

标签: java swing jpanel jmenu jmenuitem

我需要JMenu中有一个JMenuItem(右边带箭头的那个可以显示JPanel)。问题是,当我这样做时,JMenu未在鼠标滚动时激活... 我不知道怎么做,如果可能的话。

3 个答案:

答案 0 :(得分:3)

如果您将JMenu包裹在JMenuBar中,它会按预期工作。

这是一个演示示例:

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

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.SwingUtilities;

public class TestMenus {

    private JMenuBar createMenuBar(String name, int depth) {
        JMenuBar bar = new JMenuBar();
        bar.add(createMenu(name, depth));
        return bar;
    }

    private JMenu createMenu(String name, int depth) {
        JMenu menu = new JMenu(name);
        for (int i = 0; i < 5; i++) {
            if (depth > 0) {
                menu.add(createMenu("sub-" + name, depth - 1));
            }
        }
        for (int i = 0; i < 5; i++) {
            menu.add(createMenuItem("Menu item " + (i + 1)));
        }
        return menu;
    }

    private JMenuItem createMenuItem(String name) {
        final JMenuItem jMenuItem = new JMenuItem(name);
        jMenuItem.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                JOptionPane.showMessageDialog(jMenuItem, "Successfully pressed a menu item");
            }
        });
        return jMenuItem;
    }

    protected void initUI() {
        JFrame frame = new JFrame(TestMenus.class.getSimpleName());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(createMenuBar("Root menu", 3));
        frame.pack();
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                new TestMenus().initUI();
            }
        });
    }

}

结果:

Result of menus added to a JFrame content pane

答案 1 :(得分:2)

这是解决这个问题的另一种方法,我认为这更接近你想要的。它涉及扩展JMenuBar以使其具有JMenu对象的外观。

该类包含一个名为menu的JMenu对象。重写了添加方法,因此您将添加到菜单而不是JMenuBar(您可能必须重写一些添加方法才能使其完美)。

绘画有几种选择。我不确定你是否想要JMenuBar的按钮样式外观,所以我在一些选项中添加了一些注释来定制它,以及JMenuBar的下划线外观。

以下是没有边框的按钮外观的结果: Unclicked Clicked

这是没有按钮外观且没有边框的结果: Unclicked Clicked

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

public class JPanelMenu extends JMenuBar{

public static void main(String[] args) {
    JFrame f = new JFrame("Menu Test");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JMenu jmenu = new JMenu("J Menu");
    jmenu.add(new JMenuItem("Menu Item"));

    JPanelMenu m = new JPanelMenu("Menu");
    m.add(jmenu);
    m.add(new JMenuItem("Menu Item 1"));
    m.add(new JMenuItem("Menu Item 2"));

    JPanel background = new JPanel();
    background.add(m);      
    f.setContentPane(background);
    f.pack();
    f.setVisible(true);
}

//This is the JMenu that is shown
private JMenu menu;

public JPanelMenu(String title) {
    super();
    menu = new JMenu(title);
    super.add(menu);
}

@Override
public Component add(Component comp) {
    //You add the the JMenu instead of the JMenuBar
    return menu.add(comp);
}

@Override
public JMenu add(JMenu c) {
    //You add the the JMenu instead of the JMenuBar
    return (JMenu) menu.add(c);
}

@Override
protected void paintComponent(Graphics g) {
    super.paintComponent(g);

    //Include these two lines to remove the button look
    //Or remove this method to keep the button look
    //g.setColor(getBackground());
    //g.fillRect(0, 0, getWidth(), getHeight());
}

@Override
protected void paintBorder(Graphics g) {
    //Remove this line to remove the underline look
    //when you remove the button look
    //An alternative is to you setBorderPainted(false);
    //when you create the object or in the constructor
    //Or remove this method to keep the border
    //super.paintBorder(g);
}
}

答案 2 :(得分:0)

您必须在JPanel布局中传递BorderLayout,然后才能在面板中添加菜单栏:

JPanel p = new JPanel();
p.setLayout(new BorderLayout());
p.add(menubar, BorderLayout.NORTH);