所以每次我关闭程序时,都会弹出一个窗口,询问我是否要关闭应用程序 但我不确定如果选择“否”,我应该在里面写什么。
现在每次我按 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);
}
}
});
}
尝试插入我在网上找到的一些不同的方法和代码。