Files
qt5-qml-cpp-cmake-helloworld/qml/hw.qml
T
Tal Lancaster 558fba07a6 mp2.cpp: new example on getting properties
hw.qml: findChild uses objectName; so added it.
2017-01-18 16:01:46 -07:00

18 lines
314 B
QML

import QtQuick 2.0
Rectangle {
id: page
width: 320; height: 480
color: "lightgray"
Text {
id: helloText
objectName: "helloText"
text: "Hello world!"
y: 30
anchors.horizontalCenter: page.horizontalCenter
font.pointSize: 24; font.bold: true
}
}