我想知道如何删除QListWidget中当前选定的行/项
我使用下面的代码没有运气!虽然它没有返回错误,但没有任何反应? :
self.QuestionList.takeItem(self.QuestionList.currentRow())
答案 0 :(得分:3)
takeItem
将行计数作为参数,可以使用listWidget.row()
方法检索。
for item in self.QuestionList.selectedItems():
self.QuestionList.takeItem(self.QuestionList.row(item))