开发者

What listener should I use? (Java)

开发者 https://www.devze.com 2023-03-01 14:06 出处:网络
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 l

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 a开发者_开发技巧dvance :)


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


You should use addActionListener.

See also this question.

0

精彩评论

暂无评论...
验证码 换一张
取 消