python里的tkinter关于bind的问题
发布网友
发布时间:2022-05-02 15:50
我来回答
共3个回答
热心网友
时间:2022-04-18 21:31
<Button-1>是鼠标左键单击,你定义的函数里没有参数,但鼠标单击事件作为参数传入cb2.
def cb2(event):
改成这样就没有问题了
亲测
正在学bind怎么用看到这个问题给了我提示
万分感谢
热心网友
时间:2022-04-18 22:49
b2.bind("<Button-1>",cb2)
这个 cb2() takes 0 positional arguments but 1 was given是说cb2函数应该是不带参数的,但是你调用的时候给了一个参数,然后就报错了。
热心网友
时间:2022-04-19 00:24
这样:
def cb1(*args):
#somecode