【1】左对齐
Rectangle {
id: test
width: 90
height: 30
Text {
text: "test"
font.pixelSize: 30
font.family: "Arial"
anchors.left: parent.left
}
}
【右】右对齐
Rectangle {
id: test
width: 90
height: 30
Text {
text: "test"
font.pixelSize: 30
font.family: "Arial"
anchors.right: parent.right
}
}