Help how hide all system menu from JInternalFrame. (not super("title", false, false, false, false);) but completely remove button (in Numbs LookandFeel).
Asked
Active
Viewed 1,199 times
0
-
please edit your post with http://sscce.org/ – mKorbel Dec 28 '11 at 09:10
-
*"Numbs LookandFeel"* What is "Numbs" PLAF? – Andrew Thompson Dec 28 '11 at 09:18
1 Answers
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