如题,我调用一个TabWidget,但是其中的tab项是用几个Rectange加进去的,我现在想通过调用model动态生成tab项个数,但是没有成功,代码如下:
TabWidget {
id: tabs
height: 200
width: window.width
Rectangle {
id:rect
color: "red"
anchors.fill: parent
height: 200
property string title: object.Name()
}
ListView {
anchors.fill: parent
model: categoryModel
delegate: rect
}
}
我发现tab项的个数好像是由TabWidget 中包含几个子项决定的,请高手指教
------解决方案--------------------
TabWidget??QML里有这个元素吗?