这是一个 QML 新手问题。从表视图示例中,我有这样的代码:
Column {
anchors.top: toolbar.bottom
.....
TabView {
id:frame
......
Tab {
title: "XmlListModel"
...
}
Tab { ...
由于 qml 文件变得很长,我想知道是否可以嵌套 qml 文件
Column {
anchors.top: toolbar.bottom
.....
TabView {
id:frame
......
<include tab 1 qml file> <-- possible ????? -------
<include tab 2 qml file>
如果include
不可能,QML 程序员如何构造他的代码?即使在简单的示例中,也已经有太多行无法处理恕我直言。
- 编辑 -
回答后,我发现这值得阅读: