I have a JInternalFrame as shown below.

enter image description here

Are there properties that allow for?

  • coloring
  • hiding the title bar
  • adding text
  • Further Customization*

to the top bar?

The only thing I have been able to find is:

jInternalFrame1.setTitle("Hello");

But I am more after a way to hide it etc.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

you can set through it's constructor like button maximize, minimize, resize, icon etc

and http://www.roseindia.net/answers/viewqa/Java-Beginners/1923-Hide/remove-titlebar-of-JInternalframe.html

another example with multiple JInternalFrame

link|improve this answer
feedback

To remove all the decorations from the title bar you can create a smaller bar (in height) that will only allow the user to drag the internal frame:

frame.putClientProperty("JInternalFrame.isPalette", Boolean.TRUE);

To remove the title bar when using the Metal LAF you can use something like:

BasicInternalFrameUI ui = (BasicInternalFrameUI)frame.getUI();
Component north = ui.getNorthPane();
north.setPreferredSize( new Dimension(0, 0) );
north.validate();
link|improve this answer
thanks, pratik beat you to the punch with nice links. – harper89 Jul 26 '11 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.