Eclipse控制台里面有个红色的按钮,点红色按钮。
添加监听类 主要是那个WindowClosing
import java.awt.*;
import java.awt.event.*;
public class app12_4
{
static Frame frm=new Frame("标签类窗口");
static Label lab=new Label();// 创建标签对象
public static void main (String[] args) {
new KeyFrame().launchFrame();
}
}
class KeyFrame extends Frame {
public void launchFrame() {
frm.setLayout(null);// 取消类窗口
frm.setSize(300,200);
frm.setBackground(Color.pink);
lab.setText("我是一个标签");
lab.setAlignment(Label.CENTER);
lab.setBackground(Color.yellow);
lab.setForeground(Color.red);
lab.setLocation(120,90);
lab.setSize(130,30);
Font fnt=new Font("Serief",Font.BOLD+Font.ITALIC,20);
lab.setFont(fnt);
frm.add(lab);
frm.setVisible(true);
addWindowListener (new WindowAdapter () {
public void windowClosing(WindowEvent e) {
setVisible (false);
System.exit (0);
}
} );
}
}
还没有添加关闭事件
添加一个匿名类
addWindowListener (new WindowAdapter () {
public void windowClosing(WindowEvent e) {
setVisible (false);
System.exit (0);
}
} );