Tagged Questions
2
votes
2answers
628 views
JInternalFrame Does Not Fully Maximize Under Mac OS X
I'm working with JInternalFrame's under Mac OS X Java 5 and when maximizing a JInternalFrame within a JDesktopPane the window doesn't fully maximize, but the property to allow maximizing is definitely ...
1
vote
2answers
161 views
Disabling the shadow around JInternalFrames with the Aqua Look and Feel
On Mac OS X with the native Aqua Look and Feel, JInternalFrames have a shadow that is part of the frame border. When the internal frame is maximized, the shadow is still visible and takes a lot of ...
0
votes
1answer
51 views
How to set JInternalFrame's size
i have a JFrame in which i set the content pane with a JDesktopPane.
jDesktopPane1 = new JDesktopPane();
setContentPane(jDesktopPane1);
My JFrame is full screen size, when i add a JInternalFrame ...