Frame窗口关闭功能
//再导入相关的包即可
this.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
JFrame窗口添加关闭功能
setDefaultCloseOperation(EXIT_ON_CLOSE);
自己偶尔发现的区别但不知道为什么?
JFrame里面如果有一个文本框控件和一个下拉列表框控件,当在文本框中输入一个值后,下拉列表框就会无法重新选择。
Frame就不会出现上面这种状况。