Tkinter绑定问题

发布于 2024-11-06 21:43:40 字数 443 浏览 0 评论 0原文

我有这样的事情:

from Tkinter import *

root = Tk()
root.title("Test")

def _quit():
    root.destroy()

m = Menu(root)
root.config(menu=m)

fm = Menu(m, tearoff=0)
m.add_cascade(label="File", menu=fm)
fm.add_command(label="Quit", command=_quit, accelerator='Ctrl+Q')

root.bind('<Control-Q>', _quit())
root.bind('<Control-q>', _quit())

root.mainloop()

我的问题是:
“为什么 _quit() 总是被调用?”

I have something like this:

from Tkinter import *

root = Tk()
root.title("Test")

def _quit():
    root.destroy()

m = Menu(root)
root.config(menu=m)

fm = Menu(m, tearoff=0)
m.add_cascade(label="File", menu=fm)
fm.add_command(label="Quit", command=_quit, accelerator='Ctrl+Q')

root.bind('<Control-Q>', _quit())
root.bind('<Control-q>', _quit())

root.mainloop()

My question is:
"Why _quit() always is being called?"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽你眉间 2024-11-13 21:43:40

当您使用 Tkinter 进行绑定时,您通常不会调用您想要绑定的函数。

您应该使用该行

root.bind('<Control-Q>', _quit) 

而不是

root.bind('<Control-Q>', _quit())

注意 _quit 后面缺少括号。

下面的代码应该可以工作。

from Tkinter import *

root = Tk()
root.title("Test")

def _quit(event):
    root.destroy()

m = Menu(root)
root.config(menu=m)

fm = Menu(m, tearoff=0)
m.add_cascade(label="File", menu=fm)
fm.add_command(label="Quit", command=lambda: _quit(None), accelerator='Ctrl+Q')

root.bind('<Control-Q>', _quit)
root.bind('<Control-q>', _quit)

root.mainloop()

编辑:

糟糕,抱歉,我只运行了测试菜单栏中退出关键字命令的代码。不是绑定的键盘命令。当为 Tkinter 进行绑定时,我很确定大多数 GUI 工具包都会在调用函数时插入绑定和事件参数。然而,Tkinter 命令关键字参数通常不会插入事件。因此,您必须通过让命令关键字参数“人为”插入 None 事件参数(lambda: _quit(None))来妥协。这允许您在两种情况下使用一个功能。

When you are binding with Tkinter you typically do not call the function you wish to bind.

You're supposed to use the line

root.bind('<Control-Q>', _quit) 

instead of

root.bind('<Control-Q>', _quit())

Take note of the lack of parentheses behind _quit.

This code below should work.

from Tkinter import *

root = Tk()
root.title("Test")

def _quit(event):
    root.destroy()

m = Menu(root)
root.config(menu=m)

fm = Menu(m, tearoff=0)
m.add_cascade(label="File", menu=fm)
fm.add_command(label="Quit", command=lambda: _quit(None), accelerator='Ctrl+Q')

root.bind('<Control-Q>', _quit)
root.bind('<Control-q>', _quit)

root.mainloop()

EDIT:

Oops sorry, I only ran the code testing the keyword command for quit in the menu bar. Not the bound key commands. When doing bindings for Tkinter and I'm pretty sure most GUI toolkits, the binding inserts and event argument when the function is called. However the Tkinter command keyword argument does not typicaly insert an event. So you have to compromise by having the command keyword argument "artificially" insert an event argument of None (lambda: _quit(None)). This allows you to use one function in both scenarios.

可遇━不可求 2024-11-13 21:43:40

因为你在呼唤它。不要称呼它:

root.bind('<Control-Q>', _quit)

Because you're calling it. Don't call it:

root.bind('<Control-Q>', _quit)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文