gpt4 book ai didi

c++ - 从 QTreeView 中删除项目时取消选择所有行

转载 作者:行者123 更新时间:2023-11-30 03:22:44 24 4
gpt4 key购买 nike

我有带有选择模式的 QTreeView:SingleSelection ( selection modes )。

我想删除选定的项目。那么rowsAboutToBeRemoved()调用函数并自动选择相邻项目,如 comment 中指定的那样: //单选模式下保证选中一个item.

如何避免选择改变?

  1. 如何使删除后不选中任何项目?
  2. 如何选择已删除项的父项?

最佳答案

给定:

QTreeView view;

我们可以访问 QItemSelectionModel临时实例和禁用信号:

QItemSelectionModel *selectModel = view.selectionModel();
selectModel->blockSignals(true);
//set the selection
selectModel->blockSignals(false);

快速查看源代码显示 Qt 将 QItemSelectionModel::currentChanged() 信号连接到 View 的 currentChanged() 插槽,这似乎是源代码你的麻烦。

关于c++ - 从 QTreeView 中删除项目时取消选择所有行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50877726/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com