gpt4 book ai didi

python - 将事件绑定(bind)到create_image

转载 作者:行者123 更新时间:2023-12-01 03:09:46 25 4
gpt4 key购买 nike

我发现在 Tkinter 中,可用的最大 Canvas 大小有限制:SO:tkinter maximum canvas size?

但这限制了他在通过网格放置东西时的命中(我不知道packplace):Sun Bear的反例显示cv.create_image 不受影响。

问题是我想要显示的图像必须绑定(bind)到鼠标单击 - 这就是我使用网格按钮的原因。问题是,我可以通过这个函数创建类似于按钮的东西,至少能够响应 Button-1 吗?

来自infohost我看到 cv.create_image 返回图像对象的整数 ID 号 - 我可以用它来绑定(bind)它吗?

最佳答案

From infohost I see that cv.create_image returns the integer ID number of the image object - can I use it to bind to it?

是的,这是一个已记录的功能。您可以使用 tag_bind 方法:

image_id = canvas.create_image(x, y, image=the_image)
canvas.tag_bind(image_id, "<1>", clickHandler)

关于python - 将事件绑定(bind)到create_image,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42978003/

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