Question

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 :)

Was it helpful?

Solution

I would guess you add a ChangeListener to the ButtonModel of each JMenuItem.

OTHER TIPS

You should use addActionListener.

See also this question.

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