How to get to the application closing event?
I want to get application to save all unsaved operations or show the user a message \"Are you sure about closing withou
You have to add WindowListener to your JFrame / JDialog, about closing event is there method public void windowClosing(WindowEvent e) { code example here
JFrame / JDialog
void windowClosing(WindowEvent e) {