-
JRadioButton(단일 선택)JAVA/GUI - Swing 2020. 10. 24. 20:22
RadioButtonFrame.java
소스 파일
RadioButtonTest.java
소스 코드
더보기import javax.swing.JFrame; public class RadioButtonTest { public static void main( String args[] ) { RadioButtonFrame radioButtonFrame = new RadioButtonFrame(); radioButtonFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE ); radioButtonFrame.setSize( 300, 100 ); // set frame size radioButtonFrame.setVisible( true ); // display frame } // end main } // end class RadioButtonTest
프로그램 실행결과
'JAVA > GUI - Swing' 카테고리의 다른 글
JList & 다중 선택 리스트 (0) 2020.10.24 JComboBox (0) 2020.10.24 JCheckBox(옵션 다중 선택) (0) 2020.10.24 JButton(버튼) (0) 2020.10.24 JTextField를 활용한 한 줄의 문자열을 입력 (0) 2020.10.16