Skip to content

Instantly share code, notes, and snippets.

@mgarin
Created September 26, 2014 11:13
Show Gist options
  • Save mgarin/577dc06dda412139c0a3 to your computer and use it in GitHub Desktop.
Save mgarin/577dc06dda412139c0a3 to your computer and use it in GitHub Desktop.
Swing tips - issue #2 - using hotkeys - 2
WebMenuItem menuItem = new WebMenuItem( "Exit application" );
menuItem.setAccelerator ( Hotkey.ALT_F4 );
JMenuItem menuItem = new JMenuItem ( "Exit application" );
menuItem.setAccelerator ( KeyStroke.getKeyStroke ( KeyEvent.VK_F4, KeyEvent.ALT_MASK ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment