pyqt5如何获取当前文件和切换到下一个,一个按钮可以对应多个事件。

pyqt5 How to get the current file and switch to the next one, one button can correspond to multiple events。

我想切换到下一个项目,方法是单击列表中的项目,然后单击下一步

您需要将按钮连接到此函数并传递项目列表:

def click(list):
     item=list.selectedItems()[0]
     file_name=item.text()
     #get the file with file name

     row = self.selectedIndexes()[0].row()
     item.setSelected(False)
     next_item= list.item(row+1)
     if next_item is not None:
         next_item.setSelected(True)