How does one push a JInternalFrame to the top of all the frames in a JDesktopPane?
| ||||
|
feedback
|
|
Read the JInternalFrame API and follow the link to the Swing tutorial on "How to Use Internal Frames" where you will find a working example of how to "select" the active internal frame. | |||||||||||||
feedback
|
|
try grabFocus() and requestFocus(). One of the should work. I personally used only requestFocus(). | |||||||||
feedback
|
|
In this example, a | ||||
|
feedback
|
|
/*make current JInternalFrame deselected by calling JInternalFrame method setSelected(false) */then select new JInternalFrame using the same method; ie setSelected(true) sample code: try{ jframe1.setSelected(false); jframe2.setSelected(true); }catch (PropertyVetoException ex) {} | |||
|
feedback
|
|
Closing a modal JInternalFrame see the post by Mr. Zen(me) | |||
|
feedback
|
|
The OP has noted that On Ubuntu, the system selected LaF was In the end I punted on this and just prohibited
| |||
feedback
|