public class Test extends JFrame {


private JPanel contentPane;


public static void main(String[] args) {

Test frame = new Test();

frame.setVisible(true);

}


public Test() {

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setBounds(100, 100, 450, 300);

contentPane = new JPanel();

contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));

setContentPane(contentPane);

contentPane.setLayout(null);

this.setLocation(200, 200);

//프레임, 다이얼로그에서 setLocation(X,Y); 함수를 호출한다.

}

}

'컴퓨터공학 > Java Scala' 카테고리의 다른 글

JAVA 특징 장점 단점  (0) 2013.01.03
자바 Int형 변수를 돈 형식 스트링으로 리턴  (0) 2012.06.07
자바 파일 다이얼로그  (0) 2012.06.01
자바 GUI 이벤트 처리 방법  (0) 2012.06.01
자바 배열 복사  (0) 2012.06.01

+ Recent posts