las6040 发表于 2023-2-3 23:13:47

求助,tkinter 文本阵列如何绑定右键

代码如下:

问题是:这样多个(本例是48个文本框)需要绑定右键功能,运行后发现,在任何一个文本框中操作,都会落在“文本48”中

如何解决,谢谢大神!!

def txt_lst_bind(event,editor):
    m2.delete(0,END)
    m2.add_command(label='全选',command=lambda:selectall(editor)) #command=lambda:
    m2.add_command(label='剪切',command=lambda:cut(editor))
    m2.add_command(label='复制',command=lambda:copy(editor))
    m2.add_command(label='粘贴',command=lambda:paste(editor))
    # m2.add_command(label='另存',command=lambda:save_text1(editor))
    m2.add_command(label='清空',command=lambda:txt_lst_clear(editor))
    m2.post(event.x_root,event.y_root)

fr1=Frame(root,bg='#256B55')
fr1.place(x=280,y=0)
txt_lst=[]
r=0
c=0
m2=[]
for i in range(48):
    txt_lst=txt_lst.append(f'txt_lst')
    m2=m2.append(f'm2')
    txt_lst=Text(fr1,width=16,height=15,bg='#eeeeee',wrap='word')
    txt_lst.grid(row=r,column=c,padx=5)
    lab=Label(fr1,text='文本'+str(i+1),bg='#256B55',fg='#eeeeee')
    lab.grid(row=r+1,column=c)
    txt_lst.bind("<Button-3>", lambda x : txt_lst_bind(x,txt_lst))#绑定右键鼠标事件
    m2=Menu(txt_lst,tearoff=False)
    c+=1
    if c%12==0:
      c=0
      r+=2

isdkz 发表于 2023-2-3 23:28:03

本帖最后由 isdkz 于 2023-2-3 23:32 编辑



'''
txt_lst.bind("<Button-3>", lambda x : txt_lst_bind(x,txt_lst)) 中的函数不是立即调用的,所以当循环完最后一次的时候 i 的值已经变成 47 了,后面再调用都是用的 47

可以用 eval 来固定 i 的值
'''


def txt_lst_bind(event,editor):
    m2.delete(0,END)
    m2.add_command(label='全选',command=lambda:selectall(editor)) #command=lambda:
    m2.add_command(label='剪切',command=lambda:cut(editor))
    m2.add_command(label='复制',command=lambda:copy(editor))
    m2.add_command(label='粘贴',command=lambda:paste(editor))
    # m2.add_command(label='另存',command=lambda:save_text1(editor))
    m2.add_command(label='清空',command=lambda:txt_lst_clear(editor))
    m2.post(event.x_root,event.y_root)

fr1=Frame(root,bg='#256B55')
fr1.place(x=280,y=0)
txt_lst=[]
r=0
c=0
m2=[]
for i in range(48):
    txt_lst=txt_lst.append(f'txt_lst')
    m2=m2.append(f'm2')
    txt_lst=Text(fr1,width=16,height=15,bg='#eeeeee',wrap='word')
    txt_lst.grid(row=r,column=c,padx=5)
    lab=Label(fr1,text='文本'+str(i+1),bg='#256B55',fg='#eeeeee')
    lab.grid(row=r+1,column=c)
    txt_lst.bind("<Button-3>", eval(f'lambda x : txt_lst_bind(x,txt_lst[{i}])'))                      #绑定右键鼠标事件                      改了这一行   
    m2=Menu(txt_lst,tearoff=False)
    c+=1
    if c%12==0:
      c=0
      r+=2

las6040 发表于 2023-2-4 10:43:16

isdkz 发表于 2023-2-3 23:28


谢谢大佬!!问题已经完美解决{:5_106:}{:5_108:}{:5_110:}

isdkz 发表于 2023-2-4 10:45:03

las6040 发表于 2023-2-4 10:43
谢谢大佬!!问题已经完美解决

不客气{:5_109:}
页: [1]
查看完整版本: 求助,tkinter 文本阵列如何绑定右键