1
我想知道是否有可能在一個公共模型上有多個視圖,其中每個視圖的根索引是Qt公共模型中的任意索引? 這可以用某種代理模型來實現嗎?模型的任意索引作爲Qt中視圖的根索引?
E.g.
source model:
root
-A
-1
-2
-B
-3
-4
Tree View:
-A
-1
-2
-B
-3
-4
List View1 (using index A as root):
-1
-2
List View2 (using index B as root):
-3
-4
編輯:所以它似乎我試圖實現的功能可以通過QTreeView.setRootIndex()來實現。不幸的是,QDeclarativeView不提供此功能(還?)。