from Tkinter import *import tkMessageBoxdef callback(): if tkMessageBox.askokcancel("Quit", "Do you really wish to quit?"): root.destroy()root = Tk()root.protocol("WM_DELETE_WINDOW", callback)root.mainloop()
Name (required)
email (will not be published) (required)
Website