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