JFrame mouse-menu-titlebar interaction
- From: "Jeff Higgins" <oohiggins@xxxxxxxxx>
- Date: Wed, 28 Sep 2005 13:32:42 -0500
Hello,
I would like to change the behavior of the following
Swing application. When this application is run and
the Test menu is pulled down I would like to be able to
click in the titlebar area and the menu rolls back up.
Is this possible? Will someone kindly explain how I
might accomplish this behavior change?
I am using J2SE 5.0 SDK on Windows XP SP2.
Any help will be greatly appreciated.
Thanks
Jeff Higgins
package test.jframe;
import java.awt.*;
import javax.swing.*;
public class TestJFrame extends JFrame {
public TestJFrame() {
setDefaultCloseOperation(EXIT_ON_CLOSE);
Menu.add(MenuItem);
MenuBar.add(Menu);
setJMenuBar(MenuBar);
pack();
}
public static void main(String args[]) {
EventQueue.invokeLater(new Runnable() {
public void run() {
new TestJFrame().setVisible(true);
}
});
}
private JMenuBar MenuBar = new JMenuBar();
private JMenu Menu = new JMenu("Test");
private JMenuItem MenuItem = new JMenuItem("Pulled");
}
.
- Follow-Ups:
- Re: JFrame mouse-menu-titlebar interaction
- From: Michael Dunn
- Re: JFrame mouse-menu-titlebar interaction
- Prev by Date: Can no longer use arrow keys to move cursor around an AWT TextArea after upgrading to JDK 1.4.2.07
- Next by Date: Re: JFrame mouse-menu-titlebar interaction
- Previous by thread: Can no longer use arrow keys to move cursor around an AWT TextArea after upgrading to JDK 1.4.2.07
- Next by thread: Re: JFrame mouse-menu-titlebar interaction
- Index(es):