Capturing destroy events : UI Event : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » UI Event »

 

Capturing destroy events



from Tkinter import *
import tkMessageBox

def callback():
    if tkMessageBox.askokcancel("Quit""Do you really wish to quit?"):
        root.destroy()

root = Tk()
root.protocol("WM_DELETE_WINDOW", callback)

root.mainloop()

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» UI Event