Does anyone know how to remove the title bar of a JInternalFrame?

I already know to set frame.setBorder(null); to remove the borders, but the title bar remains. I hope you can help.

有帮助吗?

解决方案

As simple as that..

jInternalFrame1.setUI(null);

Try.. Thanks..

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top