Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我检查了最新的文档,没有找到相关的。我在我的类中放置了一个指向 a 的指针QListWidgetItem,我想使用一些函数QListWidget来删除这个子项。
QListWidgetItem
QListWidget
我发现只是通过 ID 删除它,takeItem (i).
takeItem (i)
有没有更好/真正的方法来做到这一点?
要从列表中删除项目,请使用 takeItem()。
根据文档,这是正确的使用方法。