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.
我在我的应用程序的 QTableWidget 的一个单元格中有一个组合框小部件。用户在组合框中选择一个选项后,我想将选定的文本设置为同一单元格中的 QTableWidgetItem (其中存在组合框)。所以我想用一个表格小部件项目替换现有的组合框。调用表小部件的 removeCellWidget 似乎删除了组合框。如何在不实际删除组合框对象的情况下实现此效果?
谢谢,拉克什。
使用takeItem。它从表中删除项目而不删除它。