[java] Qestion about JFrame title bar

Started by
1 comment, last by firewindshadow 20 years, 4 months ago
What class and function can I use to remove the "close", "resize", and "max/min size" buttons on the title bar? Or is there a way to remove the whole title bar on the JFrame itself?
Advertisement
JFrame.setUndecorated(true);

(technically, it''s in Frame - which JFrame extends from)
"I pretend to work, they pretend to pay me."
-thanks

This topic is closed to new replies.

Advertisement