일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 아이폰 바탕화면
- 하루한마디영어
- 안드로이드2.0개발
- 안드로이드개발
- 안드로이드2.0
- 구글안드로이드
- 안드로이드
- 안드로이드 배경화면
- 아이폰 배경화면
- objective-c
- SKY 시리우스
- 스마트폰 배경화면
- 인기있는 블로그 만들기
- 안드로이드 개발
- 안드로이드 개발 강좌
- 안드로이드 개발 2.0
- 영어
- 스카이 안드로이드폰 시리우스 K양 동영상
- 구글 안드로이드
- 하루 한마디 영어
- 안드로이드 바탕화면
- 구글 안드로이드 개발
- 안드로이드 2.0 개발
- 안드로이드폰
- 스카이 안드로이드폰 시리우스
- android
- Form Stuff
- MapView
- sky 시리우스폰
- 안드로이드 개발 2.0 강좌
- Today
- Total
moozi
Haksa 샘플 본문
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
public class Haksa extends JFrame {
Container contentPane;
String[] language={"영어","중국어","일본어","기타"};
Haksa(){
this.setTitle("학사관리");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.contentPane=getContentPane();
this.contentPane.setLayout(new FlowLayout());
this.contentPane.add(new JLabel("이름"));
this.contentPane.add(new JTextField(10));
this.contentPane.add(new JLabel("학번"));
this.contentPane.add(new JTextField(12));
this.contentPane.add(new JLabel("학과"));
this.contentPane.add(new JTextField(25));
this.contentPane.add(new JLabel("주소"));
this.contentPane.add(new JTextField(25));
this.contentPane.add(new JLabel("외국어"));
JComboBox cb1=new JComboBox(language);
cb1.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0) {
JComboBox cb=(JComboBox)arg0.getSource();
System.out.println(cb.getSelectedIndex());
System.out.println(language[cb.getSelectedIndex()]);
}});
this.contentPane.add(cb1);
this.contentPane.add(new JScrollPane(new JTextArea(10,28)));
this.contentPane.add(new JButton("입력"));
this.contentPane.add(new JButton("수정"));
this.contentPane.add(new JButton("삭제"));
this.contentPane.add(new JButton("목록"));
this.setSize(350,400);
this.setVisible(true);
}
public static void main(String[] args) {
new Haksa();
}
}