我想问下,当点击窗体关闭按钮时,如何捕获这个讯息?就是说当按下关闭按钮时,我们如何像平时按一个Button一样可以监听,以实现我们想要的效果(比如弹出一个对话框)。
------解决方案--------------------
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
int intExit = JOptionPane.showConfirmDialog(this,"请问是否要关闭?","退出",JOptionPane.YES_NO_OPTION);
if (intExit == 0){
System.exit(0);
}
}
});
试试看行不行