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
  setRootPaneCheckingEnabled(false);
  javax.swing.plaf.InternalFrameUI ifu= frame.getUI();
  ((javax.swing.plaf.basic.BasicInternalFrameUI)ifu).setNorthPane(null);      

  frame.setLocation(i*50+10, i*50+10);
  frame.setSize(200, 150);
  //frame.setBackground(Color.white);      

  frame.setVisible(true);
  desktop.add(frame);

the problem is title bar isn't being hidden for some reason. thanks

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

After bit of searching I found,

yourInternalFrameVariableName.setUI(null);

I hope this is what you are looking for,

Happy Coding,

link|improve this answer
that isn't working... sorry – Tushar Chutani Aug 28 '11 at 2:39
Hi Tushar, I have edited answer, setUI(null) should work, Give it a try. – TweetWithThisOwl_FollowMe Aug 28 '11 at 3:18
alright thank you so much – Tushar Chutani Aug 28 '11 at 3:53
it wasn't working on mac but does work on windows – Tushar Chutani Aug 28 '11 at 3:53
No worries mate! – TweetWithThisOwl_FollowMe Aug 28 '11 at 3:54
feedback

Your Answer

 
or
required, but never shown

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