[JAVA] APPLET - ButtonEvent
Computer_IT/JAVA2006. 9. 18. 19:28
반응형
버튼을 생성하여 컨테이너 애플릿에 붙인뒤 이벤트 처리
- import java.awt.*;
- import java.applet.*;
- import java.awt.event.*;
- {
- Label myLabel;
- Button myButton1, myButton2, myButton3;
- public void init()
- {
- myButton1.setLabel("C언어");
- myButton1.addActionListener(this);
- add(myButton1);
- myButton2.addActionListener(this);
- add(myButton2);
- myButton3.addActionListener(this);
- add(myButton3);
- myLabel.setText("버튼을 눌러주세요!");
- add(myLabel);
- }
- {
- if(e.getSource() == myButton1) {
- myLabel.setText("선택 : C언어");
- } else if(e.getSource()==myButton2) {
- myLabel.setText("선택 : C++언어");
- } else if(e.getSource()==myButton3) {
- myLabel.setText("선택 : 자바");
- }
- }
- }
반응형
'Computer_IT > JAVA' 카테고리의 다른 글
[java5] Calendar Example - 년 월 일 시 분 초 (0) | 2006.09.28 |
---|---|
[java] 인수로 주어진 파일에 대한 정보 출력 (0) | 2006.09.27 |
[JAVA] APPLET - Label 사용예제 (0) | 2006.09.18 |
[JAVA5] 방향키를 이용해 button 움직이기 (0) | 2006.09.14 |
[JAVA5] ActionEvent Example (0) | 2006.09.14 |