self.listWatchList.bind(
"<<ListboxSelect>>",
self.eventListboxSelect)
def eventListboxSelect(self, event):
print(self.listWatchList.get(ACTIVE))
return
每次进行新选择时,尝试打印listWatchList中的选定字符串。 listWatchList具有3个字符串:“ MED”,“ SFIX”和“ USLV”。我遇到了两个问题。
有人可以解释为什么会这样吗? 谢谢!