web-dev-qa-db-ja.com

Tkinterリストボックスの選択が変更されたときにコールバックを取得しますか?

TextまたはEntryウィジェットがTkinterで変更されたときにコールバックを取得する方法はいくつかありますが、Listboxのウィジェットは見つかりませんでした(それは役に立ちません)私が見つけることができるイベントのドキュメントの多くは古いか不完全です)。このためのイベントを生成する方法はありますか?

40
bfops

以下にバインドできます。

<<ListboxSelect>>
45
Bryan Oakley
def onselect(evt):
    # Note here that Tkinter passes an event object to onselect()
    w = evt.widget
    index = int(w.curselection()[0])
    value = w.get(index)
    print 'You selected item %d: "%s"' % (index, value)

lb = Listbox(frame, name='lb')
lb.bind('<<ListboxSelect>>', onselect)
61

Selectmode = MULTIPLEを使用してリストボックスで最後に選択したアイテムを取得する必要があるという問題がありました。他の誰かが同じ問題を抱えている場合、ここで私がやったことがあります:

lastselectionList = []
def onselect(evt):
    # Note here that Tkinter passes an event object to onselect()
    global lastselectionList
    w = evt.widget
    if lastselectionList: #if not empty
    #compare last selectionlist with new list and extract the difference
        changedSelection = set(lastselectionList).symmetric_difference(set(w.curselection()))
        lastselectionList = w.curselection()
    else:
    #if empty, assign current selection
        lastselectionList = w.curselection()
        changedSelection = w.curselection()
    #changedSelection should always be a set with only one entry, therefore we can convert it to a lst and extract first entry
    index = int(list(changedSelection)[0])
    value = w.get(index)
    tkinter.messagebox.showinfo("You selected ", value)
listbox = tk.Listbox(frame,selectmode=tk.MULTIPLE)
listbox.bind('<<ListboxSelect>>', onselect)
listbox.pack()
2
Alex