문제

I wanted to know how i could remove the current selected row/item in a QListWidget??

I used the code below with no luck! Although it returns no error, nothing happens? :

self.QuestionList.takeItem(self.QuestionList.currentRow())
도움이 되었습니까?

해결책

takeItem takes the row count as parameter, which can be retrieved using listWidget.row() method.

for item in self.QuestionList.selectedItems():
    self.QuestionList.takeItem(self.QuestionList.row(item))
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top