我想在 2 个列表视图中使用 2 个模型,但第二个列表不像第一个列表那样填充。我使用的代码如下:
Q_DECL_EXPORT int main(int argc, char *argv[])
{
QScopedPointer<QApplication> app(createApplication(argc, argv));
MyModel myModel;
myModel.addPrimaryData(ModelItem(1, "Apple"));
myModel.addPrimaryData(ModelItem(2, "Orange"));
myModel.addPrimaryData(ModelItem(3, "Banana"));
MyModel myModel2;
myModel2.addSecondaryData(ModelItem(1, "Apple2"));
myModel2.addSecondaryData(ModelItem(2, "Orange2"));
myModel2.addSecondaryData(ModelItem(3, "Banana2"));
QDeclarativeView declView;
QDeclarativeContext *declContext = declView.rootContext();
declContext->setContextProperty("myModel", &myModel);
declContext->setContextProperty("myModel2", &myModel2);
declView.setSource(QUrl("qml/MyDemo/main.qml"));
declView.show();
return app->exec();
}
如上所示,我创建了 2 个模型,即 myModel 和 myModel2,并在 QML 的 2 个 Listy 视图中使用。
ListView1 使用模型 myModel,ListView2 使用模型 myModel2。但 myModel2 数据未显示在列表中。
任何具体原因。请回复您的想法。
我使用的 QML 代码如下:
ListView {
id:firstListView
model: myModel
delegate: Item{
id: firstDelegate
Text {
text: name
color: "white"
}
}
}
ListView {
id: secondListView
model: myModel2
delegate: Item{
id: secondDelegate
Text {
text: name
color: "white"
}
}
}