Listbox
Tkinter と Python を使用して作成しています。のボタンを作成したいのですが、select all
コードを使用した要素の選択に関する情報が見つかりません。
self.l = Listbox(self, height=12, selectmode=MULTIPLE)
self.selectAll=Button(self, text="select all",
command=self.selectAllCallback())
def selectAllCallback(self)
# What to do here