1
您如何知道用戶在python tkinter程序的關閉按鈕上按下「x」按鈕並執行事件?當按下「x」或關閉按鈕時檢測到
您如何知道用戶在python tkinter程序的關閉按鈕上按下「x」按鈕並執行事件?當按下「x」或關閉按鈕時檢測到
您可以覆蓋關閉協議。
def on_close():
#custom close options, here's one example:
close = messagebox.askokcancel("Close", "Would you like to close the program?")
if close:
root.destroy()
root.protocol("WM_DELETE_WINDOW", on_close)
它工作完美....乾杯 –