多个功能绑定到单个小部件

发布于 2024-12-03 10:51:21 字数 259 浏览 1 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

那些过往 2024-12-10 10:51:21

如果我正确理解了问题,您可以创建一个回调函数:

def cb(event):
    func0()
    func1()
    # ...

wid.bind('<Button>', cb)

另外,您可以将 add=True 替换为 '+'

wid.bind('<Button>, func1, '+')

If I understand the question correctly, you can create one callback function:

def cb(event):
    func0()
    func1()
    # ...

wid.bind('<Button>', cb)

Also, you can replace add=True with '+':

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