的最佳方式來創建動態
Rectangle {
id: root
}
典型QML對象下 '根' 添加項目是QML本身。但是如果你仍然想用C++來做到這一點,那也是可能的。例如:
main.cpp中:
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQuickView view;
view.setSource(QUrl("qrc:/main.qml"));
view.show();
QObject *root = view.rootObject();
QQuickItem * myRect = root->findChild<QQuickItem *>("myRect");
if(myRect) {
QQmlComponent rect1(view.engine(),myRect);
rect1.setData("import QtQuick 2.4; Rectangle { width:100; height: 100; color: \"orange\"; anchors.centerIn:parent; }",view.source());
QQuickItem *rect1Instance = qobject_cast<QQuickItem *>(rect1.create());
view.engine()->setObjectOwnership(rect1Instance,QQmlEngine::JavaScriptOwnership);
if(rect1Instance)
rect1Instance->setParentItem(myRect);
}
return app.exec();
}
main.qml
import QtQuick 2.4
Item {
width: 600
height: 600
Rectangle {
objectName: "myRect"
width: 200
height: 200
anchors.centerIn: parent
color: "green"
}
}
因爲所有的QML項目都有相應的С++類,它可以直接創建QQuickRectangle
但標題是私人的,這不是建議的方式。
此外,請注意,我使用objectName
訪問C++項目,而不是id
,因爲它在C++端不可見。