提问人:alon facebo0k1wallacoil 提问时间:8/3/2023 更新时间:8/3/2023 访问量:5
我应该在里面写什么JOptionPane.YES_NO_OPTION
What should i write inside JOptionPane.YES_NO_OPTION
问:
因此,每次我关闭程序时,显然都会弹出一个窗口,询问我是否要关闭应用程序 但我不确定如果选择 NO,我应该在里面写什么。
现在,每次我按“否”时,GUI都会关闭。
ex.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
// Ask for confirmation before terminating the program.
int option = JOptionPane.showConfirmDialog(
ex,
"Are you sure you want to close the application?",
"Close Confirmation",
JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE);
if (option == JOptionPane.YES_OPTION) {
System.exit(0);
}
}
});
}
尝试插入我在网上找到的几种不同的方法和代码。
答: 暂无答案
评论