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.
我有一个必须向用户显示的列表列表。当用户单击第一个列表的元素时,第二个视图必须更新以显示单击元素的“子项”。
我在想,我应该和QAbstractListModel还是一起去QAbstractItemView?QAbstractItemView似乎我需要做的事情要复杂得多......你能给我一些关于如何实施我一开始所说的话的提示吗?
QAbstractListModel
QAbstractItemView
非常感谢;),这是我第一次尝试实现自定义模型... Paolo
QColumnView做你想做的事。
QColumnView 在许多 QListView 中显示一个模型,树中的每个层次结构一个。这有时被称为级联列表。
您应该使用树模型。有例子。