Tagged Questions
The jmenupopup tag has no wiki summary.
4
votes
4answers
2k views
How to select first item in JPopupMenu?
In the past, when one made a JPopupMenu visible it's first item would get selected by default: http://weblogs.java.net/blog/alexfromsun/archive/2008/02/jtrayicon_updat.html
Nowadays the default ...
0
votes
1answer
142 views
JMenu setDelay() pop down delay
In my application, I have a JPopupMenu that displays a set of sub-menus:
private static JMenu createMenu(String title) {
JMenu menu = new JMenu(title);
menu.setDelay(2000);
menu.add(new ...