我正在体验新的 QQuickWidget。如何在 QQuickWidget 和 C++ 之间进行交互?
C++
QQuickWidget *view = new QQuickWidget();
view->setSource(QUrl::fromLocalFile("myqml.qml"));
view->setProperty("test", 0);
myLayout->addWidget(view);
QML
import QtQuick 2.1
Rectangle {
id: mainWindow
width: parent.width
height: parent.height
Text {
id: text
width: mainWindow.width
font.pixelSize: 20
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
text: test
}
}
text: test
不起作用:ReferenceError: test is not defined
如何通过 C++ 为我的 QML 文件提供一些属性?
是否也可以在 C++ 中获取 Text 对象并更新其文本?