Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为 JMenu(不是 JMenuItem)添加一个快捷方式,但我不知道如何...请帮助...
试试这个:
JMenu actionMenu = new JMenu("Actions"); actionMenu.setMnemonic(KeyEvent.VK_A);
这样你就可以通过按键ALT+来访问它A。