awt 기초적인 부분인데 실행이 잘 안되네요..쩝
블랙캣
import java.awt.*;
import java.awt.event.*;
public class ButtonTest_action extends Frame implements ActionListener {
public ButtonTest_action(String str) {
super(str);
this.addWindowListener(new WindowControll());
Button b = new Button(눌러 줘잉e..);
add(b);
b.addActionListener(this);
}
public static void main(String args[]) {
ButtonTest_action bt= new ButtonTest_action(Button Test);
bt.pack();
bt.setVisible(true);
} public void actionPerformed(ActionEvent e) {
System.out.println(Button이 눌려졌네);
System.out.println(Button에 쓰인 글은 + e.getActionCommand());
}}
class WindowControll extends WindowAdapter {
public void WindowClosing(WindowEvent e) {
System.exit(0);
}
}
===============
저 프로그램에서 윈도우즈 닫기를 누르면 close가 안 됩니다..쩝..어케 하면 되죠...
-
유메 2023-07-16
super(str); -- frame 클래스의 settext로 가죠. ^^
this.addwindowlister(new windowcontroll()); 리스너를 호출합니다.
button b=new button(\---\); 버튼 생성, 버튼명
add(b) 버튼을 컨테이너에&nbs -
앤드류 2023-07-16
this.pack(); this.show(); 이거 두개 넣으니까 해결이 되네요...흑흑흑..그런데 전체적으로 설명한번 쫘악 해 주실수 있을가요? 쌩초보가 쌩 날리를 피고 있어서요