java中JFrame 窗口关闭时,弹出一个对话框提示是否确定关闭,这段代码怎么写?
在网上看到一个:publicclassButtonFrameextendsJFrame{publicButtonFrame(){setSize(500,500);setD...
在网上看到一个:
public class ButtonFrame extends JFrame {
public ButtonFrame() {
setSize(500, 500);
setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
addWindowListener(new WindowAdapter(){
@Override
public void windowClosing(WindowEvent e) {
if(JOptionPane.showConfirmDialog(null,"是否退出")==JOptionPane.OK_OPTION)
System.exit(0);
}
});
}
public static void main(String[] args) {
new ButtonFrame().setVisible(true);
}
但是这个设为JFrame.DO_NOTHING_ON_CLOSE,关闭时没反应啊! 展开
public class ButtonFrame extends JFrame {
public ButtonFrame() {
setSize(500, 500);
setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
addWindowListener(new WindowAdapter(){
@Override
public void windowClosing(WindowEvent e) {
if(JOptionPane.showConfirmDialog(null,"是否退出")==JOptionPane.OK_OPTION)
System.exit(0);
}
});
}
public static void main(String[] args) {
new ButtonFrame().setVisible(true);
}
但是这个设为JFrame.DO_NOTHING_ON_CLOSE,关闭时没反应啊! 展开
2个回答
展开全部
DO_NOTHING_ON_CLOSE关闭时什么都不做,关闭时不就咩反应了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询