I want a listener that defines if a JMenuItem was selected. Not pressed, but just highlighted. I don't need MouseOver listener, because the selection is supposed to be performed from keyboard. What listener should I use? Thanks in advance :)
feedback
|
|
I would guess you add a ChangeListener to the ButtonModel of each JMenuItem. | |||
|
feedback
|
|
Have a look at this http://www.exampledepot.com/egs/javax.swing/PopupCurSel.html | |||
feedback
|
|
You should use addActionListener. See also this question. | |||
feedback
|