JAVA 타이틀바 제거
관련링크
본문
import javax.swing.*;
import java.awt.*;
public class NoTitleBarFrameTest {
public static void main(String[]args){
JFrame f = new JFrame();
f.setUndecorated(true);
f.setSize(300,300);
f.setVisible(true);
}
}