gpt4 book ai didi

python - 检测何时按下 "x"或关闭按钮

转载 作者:行者123 更新时间:2023-11-28 22:36:02 25 4
gpt4 key购买 nike

您如何知道用户何时在 python tkinter 程序中按下关闭按钮上的“x”按钮并执行事件?

最佳答案

您可以覆盖关闭协议(protocol)。

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)

关于python - 检测何时按下 "x"或关闭按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37764489/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com