Question

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

Was it helpful?

Solution

Try this:

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

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top