我正在尝试动态更改Listbox(lb_ledgers)中的条目,具体取决于另一个Listbox(lb_book)中的选择。我目前有以下几行代码:
lb_book.bind('<<ListboxSelect>>', onselect)
def onselect(evt):
w = evt.widget
index = int(w.curselection()[0])
value = w.get(index)
问题是我不知道如何将第一个Listbox(lb_ledgers)传递给onselect函数以更改其内容。我尝试过使用lambda结构,但是没有用。能告诉我如何解决这个问题吗?
谢谢, MiddleClassMan