-
JTextAreaJAVA/GUI - Swing 2020. 10. 24. 22:39
TextAreaFrame.java
소스 파일
TextAreaDemo.java
소스 코드
더보기import javax.swing.JFrame; public class TextAreaDemo{ public static void main( String args[] ){ TextAreaFrame textAreaFrame = new TextAreaFrame(); textAreaFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); textAreaFrame.setSize( 425, 200 ); // set frame size textAreaFrame.setVisible( true ); // display frame } // end main } // end class TextAreaDemo
프로그램 실행결과
'JAVA > GUI - Swing' 카테고리의 다른 글
Layout - BorderLayout (0) 2020.10.24 Layout - FlowLayout (0) 2020.10.24 KeyEvent를 통해 입력된 키를 출력하기 (0) 2020.10.24 JList & 다중 선택 리스트 (0) 2020.10.24 JComboBox (0) 2020.10.24