我已将一个函数连接到 QListWidget 的 itemDoubleClicked。据我所知,它将两个参数传递给函数(self,item)。我想获取这个项目的索引,以便我可以从另一个具有相同索引的列表中访问一个项目。
self.ResultList.itemDoubleClicked.connect(self.switch_image)
功能
def switch_image(self, item):
#temp = QtWidgets.QListWidgetItem
#t = temp.text()
''' what should be here '''
# ind = item.index
print(t)