Skip to content

Instantly share code, notes, and snippets.

@tarkanlar
Created January 13, 2015 16:23
Show Gist options
  • Save tarkanlar/4db7344053d382b02096 to your computer and use it in GitHub Desktop.
Save tarkanlar/4db7344053d382b02096 to your computer and use it in GitHub Desktop.
Sending a warning message to the user before the application exits
Window.addWindowClosingHandler(new ClosingHandler() {
@Override
public void onWindowClosing(ClosingEvent event) {
event.setMessage("Are you sure you want to leave the application?");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment