如何清除QListView的所有项目

How to clear all items of QListView

找了很多都不懂如何清除QListView的所有项目?

我用了QStringListModelQStringList来填充

您可以使用 model.setStringList( QStringList{} ),或使用 model.removeRows( 0, model.rowCount() ) 手动删除行。

这对我来说很好用。

model1->removeRows( 0, model1->rowCount());