PyQt4 - Remove Item Widget from QListWidget

后端 未结 3 1598
鱼传尺愫
鱼传尺愫 2021-01-12 13:05

I have a QListWidget and I need to remove some items.

From what I\'ve researched, this is a generally unpleasant thing to do.

I\'ve read a tonne of solut

3条回答
  •  说谎
    说谎 (楼主)
    2021-01-12 13:23

    takeItem() should work:

    for SelectedItem in self.ListDialog.ContentList.selectedItems():
        self.ListDialog.ContentList.takeItem(self.ListDialog.ContentList.row(SelectedItem))
    

提交回复
热议问题