\
2021.03.29 - [JAVA/JAVA(자바)설치 및 툴 이용(ECLIPSE)] - [JAVA] 자바 설치 및 환경 하기 JDK 1.8 버전
개발 환경
Window 10
JDK 1.8
이클립스 2020_03 버전
package ex03.awt.Swing_t;
import javax.swing.*;
import java.awt.*;
public class CheckRadioEx extends JFrame {
JCheckBox win, linux, solaris;
JRadioButton man, woman;
public CheckRadioEx(String str){
super(str);
getContentPane().setLayout(new FlowLayout());
win = new JCheckBox("윈도우", true);
linux = new JCheckBox("linux", false);
solaris = new JCheckBox("solaris", false);
ButtonGroup group = new ButtonGroup();
man = new JRadioButton("남자", true);
woman = new JRadioButton("woman", false);
group.add(man);
group.add(woman);
getContentPane().add(win);
getContentPane().add(linux);
getContentPane().add(solaris);
getContentPane().add(man);
getContentPane().add(woman);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
//setSize(250, 200);
this.setBounds(300, 150, 250, 200);
this.setVisible(true);
}//end
public static void main(String[] args) {
new CheckRadioEx("체크 라디오 예제");
}
}
[JAVA]Network/Datagram - UDP 체팅 (0) | 2021.04.16 |
---|---|
[JAVA] 자바 체팅 프로그램 V_1/ TCP 방식/로컬에서 Clint 와 server 만들어서 주고 받기 (0) | 2021.04.15 |
[JAVA] awt/frame 새창 띄우기 (0) | 2021.04.14 |
[JAVA]자바 Synchronized 동기화 / 금융거래 필수 (0) | 2021.04.14 |
[JAVA] 자바 static member 호출 방법 /static 정의/설명/주의점/사용하기 (0) | 2021.04.06 |