Advertisement
lemansky

Untitled

Oct 29th, 2021
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. int result = JOptionPane.showConfirmDialog(this, "Exit?", "Exit", 0);
  2. if(result != 0){
  3. this.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
  4. } else {
  5. this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement