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