gpt4 book ai didi

python - root.overrideredirect 和 绑定(bind)

转载 作者:行者123 更新时间:2023-12-02 04:04:00 24 4
gpt4 key购买 nike

我希望以下程序在 <Any-KeyPress> 上退出事件。

from tkinter import *

root = Tk()
root.overrideredirect(True)
root.bind('<Any-KeyPress>', lambda e: root.destroy())
root.mainloop()

这在 Windows 操作系统上运行良好。然而,这在 Ubuntu 上不起作用,除非我删除行 root.overrideredirect(True)从上面的代码来看。

这是预期的行为吗?

或者有没有一种方法可以让我的程序在仍然使用 root.overrideredirect(True) 的情况下工作?

编辑

<小时/>

我刚刚看到一个similar question here at SO ,其中 Bryan Oakley 建议使用 root.focus_force()但这没有帮助。

编辑2

<小时/>

我用过root.attributes('-fullscreen', True)而不是root.overrideredirect(True)按照建议here现在看来这可行了。

最佳答案

试试这个:

from tkinter import *

root = Tk()

root.bind('<Any-KeyPress>', quit())
root.mainloop()

假设您希望程序退出,请保留代码。如果您只想清除屏幕,只需使用 root.destroy() 而不是 quit()。使用 root.overrideredirect(True) 在 Ubuntu 上不起作用。

关于python - root.overrideredirect 和 <Any-KeyPress> 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32467924/

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