关闭窗口事件的监视器接口是?
java gui编程时显示一个窗口(frame),但是不能通过点击关闭按钮来关闭这个窗口,如何才能实现点击关闭按钮来关闭它呢?
------解决方案--------------------windowListener
------解决方案--------------------添加一个window监听器,用匿名内部类实现,代码如下:
frame.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});