import java.awt.event.*;
import java.awt.*;
public class Inet
{
public static void main(String[] args)
{
Frame frame=new Frame("awt");
frame.setSize(500,400);
frame.setLocation(300,200);
frame.setLayout(new FlowLayout());
Button b=new Button("我是一个按钮");
frame.add(b);
frame.addWindowListener(new WindowAdapter()
{
public void WindowClosing(WindowEvent e)
{
System.exit(0);
}
}
);
frame.setVisible(true);
}
}
class MyWin extends WindowAdapter
{
public void WindowClosing(WindowEvent e)
{
System.exit(0);
}
}