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.
我有一个QStandardItemModel为 a 提供数据QTableView的线程和一个将数据插入模型的线程。
QStandardItemModel
QTableView
是否可以暂时停止模型更新表格视图,并在以后启用它?
您可以setUpdatesEnabled(bool)在您的视图中使用来禁用和启用更新;也许blockSignals(bool)在你的模型上调用它也很有趣;它应该阻止视图接收模型更新信号
setUpdatesEnabled(bool)
blockSignals(bool)