2条回答 默认 最新
- qtchen_1988 2019-08-06 10:34关注
Rectangle { id: root width: 800 height: 480 color: "yellow" Text { id: text anchors.centerIn: parent text: qsTr("温度(℃)") rotation: -90 } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 2无用
Rectangle {
id: root
width: 800
height: 480
color: "yellow"
Text {
id: text
anchors.centerIn: parent
text: qsTr("温度(℃)")
rotation: -90
}
}