QML学习
工程目录
main.qml
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
Text {
id: window_text
font.pointSize: 30
text: qsTr("Window text")
}
MyCompnent {
anchors.top: window_text.bottom
}
}
MyCompnent.qml
Item {
Text {
id: window_text
font.pointSize: 30
text: qsTr("rectangle text")
}
Button {
x: 20
y: 100
text: qsTr("button")
onClicked: {
window_text.text += " -> 一键三连"
}
}
}