Tkinter绑定问题
我有这样的事情:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您使用 Tkinter 进行绑定时,您通常不会调用您想要绑定的函数。
您应该使用该行
而不是
注意 _quit 后面缺少括号。
下面的代码应该可以工作。
编辑:
糟糕,抱歉,我只运行了测试菜单栏中退出关键字命令的代码。不是绑定的键盘命令。当为 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
instead of
Take note of the lack of parentheses behind _quit.
This code below should work.
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.
因为你在呼唤它。不要称呼它:
Because you're calling it. Don't call it: