I want to add a shortcut to JMenu (not JMenuItem) but I don't know how... Please, help...

有帮助吗?

解决方案

Try this:

    JMenu actionMenu = new JMenu("Actions");
    actionMenu.setMnemonic(KeyEvent.VK_A);

This way you can access it by pressing key ALT + A.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top