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.
美好的一天,我有一个 QTreeView 模型,我为这个小部件添加了 QSortFilterProxyModel,隐藏了分支,因此会有一个 QTreeView 像 QListView 但带有标题。一切正常,现在我想添加新的额外行(显示在我的观点,当单击此行时,我向上移动到此节点的父节点)。如何实现此行为:1)添加额外的行;2)单击视图并向上移动到父节点并显示新节点。
当我遇到同样的问题时,我设计了新的 ProxyModel,其唯一目的是在代理源模型的前几行之后添加空行。然后你可以在视图和排序模型之间插入这个模型。