How to get active (having focus) frame (JInternalFrame) that is inside JDesktopPane? I need it for my MDI notepad (not that anybody would use that, just a training project). Looking at api, I see only functions to get all JInternalFrames, not active one.
|
feedback
|
|
Use JDekstopPane.getSelectedFrame() method (From doc: currently active JInternalFrame in this JDesktopPane, or null if no JInternalFrame is currently active.) or | |||||||||
feedback
|
|
Make a Addendum: See also this example that uses | |||||||||||
feedback
|
|
Have you looked at the Java tutorial titled How to Use Internal Frames? In your code you need an Don't iterate over all the panes - use events. If for some reason you prefer to poll your UI rather than use an event-driven approach you can call | |||||||||||
feedback
|