18int main(
int argc,
char *argv[])
20 QGuiApplication app(argc, argv);
25view.setSource(QUrl::fromLocalFile(
"MyItem.qml"));
27QObject *object = view.rootObject();
31object->setProperty(
"width", 500);
32QQmlProperty(object,
"width").write(500);
36QQuickItem *item = qobject_cast<QQuickItem*>(object);
41QObject *rect = object->findChild<QObject*>(
"rect");
43 rect->setProperty(
"color",
"red");
static void withComponent()