I want to add shortcut keys in Java Swing Menubar. Below is what I have tried.

jMenuItem1.setText("Create");

jMenuItem1.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C,ActionEvent.CTRL_MASK));

Here i want three key KeyEvent.VK_C, CTRL_MASK and SHIFT_Mask

Please Help me Guys.

link|improve this question
Have you tried the swing tutorial on the java website? – dann.dev Feb 22 at 4:18
Please do remove that word BOSS from your question, the first thing comes to my mind is regarding JBOSS Application Server, moreover it doesn't gives a nice interpretation to your question. – nIcE cOw Feb 22 at 5:07
feedback

2 Answers

jMenuItem1.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C, ActionEvent.CTRL_MASK+ALT_MASK)
link|improve this answer
feedback

KeyStroke.getKeyStroke(KeyEvent.VK_C, 21);

http://docs.oracle.com/javase/1.4.2/docs/api/javax/swing/KeyStroke.html#getKeyStroke(int, int)

Read about the modifiers and you'll know what the 21 (or 2 and the 1) is for...

link|improve this answer
1  
I think Avram has a more correct answer. I didn't exactly understand the javadocs myself. :/ – Bradley Odell Feb 22 at 4:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.