In JavaFX, how can I get the event if a user clicks the Close Button(X) (right most top cross) a stage?
I want my application to print a debug message when the window is
I got the answer for this question
stage.setOnHiding(new EventHandler() { @Override public void handle(WindowEvent event) { Platform.runLater(new Runnable() { @Override public void run() { System.out.println("Application Closed by click to Close Button(X)"); System.exit(0); } }); } });