is there a way to detect if user trying to close window? For example, in Tkinter we can do something like this:
def exit_dialog():
#do stuff
pass
root = Tk()
root.protocol("WM_DELETE_WINDOW", exit_dialog)
root.mainloop()
Thanks.
|
feedback
|
|
Overload the For example:
Another possibility is to use the
| ||||
|
feedback
|