Skip to content

Instantly share code, notes, and snippets.

@Jimshii
Created May 22, 2012 14:48
Show Gist options
  • Save Jimshii/2769523 to your computer and use it in GitHub Desktop.
Save Jimshii/2769523 to your computer and use it in GitHub Desktop.
Exit
JMenuItem Exit = new JMenuItem("Exit");
Exit.setToolTipText("Exit application");
Exit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
statusbar.setText("Exiting");
JOptionPane.showConfirmDialog(main, "Are you sure you want to exit?",
"Exiting", JOptionPane.YES_NO_OPTION);
System.exit(0);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment