多个功能绑定到单个小部件
我在 Tkinter 中使用相同的序列(在本例中为 '
片段:
wid.bind('<Button>', func0)
wid.bind('<Button>', func1, add=True)
I'm binding multiple functions to a single widget using the same sequence (in this case the '<Button>'
sequence) in Tkinter. To do this I'm using the add
argument. Is it possible to get all the functions bound to a particular sequence?
snippet :
wid.bind('<Button>', func0)
wid.bind('<Button>', func1, add=True)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解了问题,您可以创建一个回调函数:
另外,您可以将
add=True
替换为'+'
:If I understand the question correctly, you can create one callback function:
Also, you can replace
add=True
with'+'
: