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.)

Persistent little dropdown arrow

I don't see a property for this, and I don't want to remove the entire title bar, as the title is necessary. I've looked around online, and basically come up empty here. I'm hoping it's something simple that I've just overlooked, as this is my first time using JInternalFrame, and I'm not exactly a GUI kind of guy to begin with.

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
internalframe.setFrameIcon(null);

Edit: hack to remove system menu in Windows:

BasicInternalFrameUI ui = (BasicInternalFrameUI)internalFrame.getUI();
Container north = (Container)ui.getNorthPane();
north.remove(0);
north.validate();
north.repaint();
link|improve this answer
Works on Metal but not on Windows LAF. With Windows the icon goes away but the menu still displays when the user clicks. – prunge Nov 16 '11 at 6:00
@prunge, see edit for a possible hack. – camickr Nov 16 '11 at 15:34
Thanks, that does the trick perfectly! – tredontho Nov 16 '11 at 22:09
feedback

The relevant Icon in The Synth Look and Feel, among the Nimbus Defaults, appears to have this key:

InternalFrame:InternalFrameTitlePane:"InternalFrameTitlePane.menuButton".icon

You may be able to use the approach shown in A Synth Example to replace the Icon.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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