JRadioButton
-
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 }..