[求助]swing中用button关闭窗口
如题~!
----------------解决方案--------------------------------------------------------
Swing中只有JButton 没Button那是AWT中的
this.dispose();
多看看书 书上都有写的
[此贴子已经被作者于2006-6-23 18:30:04编辑过]
----------------解决方案--------------------------------------------------------
晕,我的意思是用一个按钮关闭应用程序窗口
----------------解决方案--------------------------------------------------------
为你的JButton注册一个事件
JButton jb=new JButton("关闭");
jb.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
System.exit(0);
}
});
----------------解决方案--------------------------------------------------------
我就忘了说要 注册事件了 小千正解
----------------解决方案--------------------------------------------------------
用setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)能做起来吗?
----------------解决方案--------------------------------------------------------
以下是引用NiceGirl在2006-6-23 19:18:24的发言:
用setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)能做起来吗?
用setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)能做起来吗?
用 这个是指你点右上角的那个叉的时候,系统会退出
如果不加这个的话,你点右上角的那个叉,虽然你的窗口会关掉,但是JVM还没有退出
----------------解决方案--------------------------------------------------------