How does one push a JInternalFrame to the top of all the frames in a JDesktopPane?
|
|
||||
|
|
|
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. |
|||||||||||||
|
|
try grabFocus() and requestFocus(). One of the should work. I personally used only requestFocus(). |
|||||||||
|
|
The OP has noted that On Ubuntu, the system selected LaF was In the end I punted on this and just prohibited
|
|||
|
|
/*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) {} |
|||
|
|
|
Closing a modal JInternalFrame see the post by Mr. Zen(me) |
|||
|
|