0

Help how hide all system menu from JInternalFrame. (not super("title", false, false, false, false);) but completely remove button (in Numbs LookandFeel).

1 Answers1

2

Try this:

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

Make sure that close button is invisible:

JInternalFrame.setClosable(false);
tenorsax
  • 21,123
  • 9
  • 60
  • 107