如何在鼠标悬停时更改菜单标题颜色(在 java Swing 中)?

How to change menu title color on mouse over (in java Swing)?

我希望菜单栏上的菜单在鼠标悬停时更改其背景颜色.. 就像在大多数应用程序中一样。
我想要这个效果 -> Sample Picture
到目前为止我尝试了什么......

public class Menu extends JMenuBar implements ActionListener {

private JMenuItem fileItem_close;
private final MouseListener mouseAction = new MouseAdapter() { //i use this to apply the mouse event
    @Override
    public void mouseEntered(MouseEvent e) {
        JMenu item = (JMenu)e.getSource(); //is this implementation correct ?
        item.setOpaque(true);
    };

    @Override
    public void mouseExited(MouseEvent e) {
        JMenu item = (JMenu)e.getSource(); 
        item.setOpaque(false);
    };
};


public Menu() {
    initFileMenu();
}

private void initFileMenu() {
    JMenu fileMenu = new JMenu("File");
    fileMenu.setMnemonic('F');
    fileMenu.setRolloverEnabled(true);

    fileItem_close = new JMenuItem("Close");
    fileItem_close.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F4, KeyEvent.ALT_MASK)); //exit on pressing (Alt+F4)
    fileItem_close.addActionListener(this);

    fileMenu.add(fileItem_close);
    fileMenu.setRolloverEnabled(true);
    fileMenu.addMouseListener(mouseAction);
    fileMenu.setBackground(new Color(0x0066FF)); //The background is not visible as JMenu is not opaque by default.
    add(fileMenu);
}

@Override
public void actionPerformed(ActionEvent e) {
    JMenuItem source = (JMenuItem)e.getSource();
    if(source == fileItem_close)
        System.exit(0);     
}
}

上面的代码不起作用,每当我将鼠标悬停在该菜单标题上时,什么都没有发生。
P.S: 我不是 GUI 专家。
编辑: 我正在使用 Nimbus LaF

你可以调用setSelected()来实现悬停效果。是的,您对 e.getSource() 的实施是正确的。所以将其更改为这些行:

@Override
public void mouseEntered(MouseEvent e) {
    JMenu item = (JMenu) e.getSource(); // is this implementation
                                        // correct ?
    item.setSelected(true);
};

@Override
public void mouseExited(MouseEvent e) {
    JMenu item = (JMenu) e.getSource();
    item.setSelected(false);
};

如果您还希望菜单项在 mouseEntered() 上弹出,请在 mouseEntered 方法中调用 item.doClick() 而不是将其设置为选中。

编辑:

定制:

UIManager.put("Menu.selectionBackground", Color.BLUE);
UIManager.put("Menu.selectionForeground", Color.WHITE);
UIManager.put("Menu.background", Color.WHITE);
UIManager.put("Menu.foreground", Color.BLACK);
UIManager.put("Menu.opaque", false);

您可以将这些设置更改为您想要的任何颜色,这比创建一个扩展 JMenu.

的自己的 class 更舒服

如果您还想对其他组件(例如 JMenuItems)执行此操作,请查看 this。您可以在那里找到所有 UIManager 颜色键值。

编辑 2:

对于 Nimbus LAF,创建一个新的 class:

class FillPainter implements Painter<JComponent> {

    private final Color color;

    FillPainter(Color c) {
        color = c;
    }

    @Override
    public void paint(Graphics2D g, JComponent object, int width, int height) {
        g.setColor(color);
        g.fillRect(0, 0, width, height);
    }
}

以上为背景绘制所需。现在,这样做:

for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
    if ("Nimbus".equals(info.getName())) {
        try {
            UIManager.setLookAndFeel(info.getClassName());
            UIManager.getLookAndFeelDefaults().put("MenuBar:Menu[Selected].backgroundPainter",
                    new FillPainter(Color.BLUE));
            UIManager.getLookAndFeelDefaults().put("MenuBar:Menu[Selected].textForeground", Color.WHITE);
            break;
        } catch (ClassNotFoundException | InstantiationException | IllegalAccessException
                | UnsupportedLookAndFeelException e) {
            e.printStackTrace();
        }
        break;
    }
}

对于所有其他 Nimbus LAF 颜色键值,检查 this