문제

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