Tagged Questions
2
votes
1answer
210 views
hiding title bar of JInternalFrame? -java
I found some code online, I editted it a bit. I want to hide title bar of JInternalFrame.
JInternalFrame frame = new JInternalFrame();
// Get the title bar and set it to null
...
2
votes
1answer
260 views
JInternalFrame in full-screen mode
I intend to use a JInternalFrame as a modal JDialog in full-screen mode, however, it is not currently being shown when it gets called. Do I need to add it to some container? I tried adding it to a ...
1
vote
2answers
129 views
Is it possible to remove the little dropdown arrow in a JInternalFrame?
I'm using a JInternalFrame and I want to remove the dropdown in the upper left of the frame, as it serves no purpose (I've disabled resizeable, closable, etc.)
I don't see a property for this, and ...
0
votes
1answer
48 views
Order of layered JInternalPanes
I have some JInternalFrames in a JLayeredPane. Assume that the JInternalFrames are in the same layer of the JLayeredPane. Say that the JInternalFrames overlap in this layer. Anyone have an idea of how ...
0
votes
6answers
498 views
JInternalFrame to front and focussed
How does one push a JInternalFrame to the top of all the frames in a JDesktopPane?
0
votes
2answers
1k views
Swing: How could I get JInternalFrame treated equally to other components inside a container?
Background information:
I am implementing a visual diagram editor, which consists of
different complex elements (re-sizable, with title bar, sub-elements) and
different simple elements (not ...
0
votes
1answer
243 views
Trouble Updating Title in JInternalFrame GUI component
i am trying to update the title of a JInternalFrame component in my Java Project.
The component is an instance of my ImageFrame class which extends JInternalFrame, and in my code I call a setter ...