QML中的垂直文本方向

时间:2019-04-04 16:41:51

标签: qt qml

如何在QML中以垂直方向显示文本,如下所示?

enter image description here

Text {
    id: name13
    text: qsTr("John")
}

1 个答案:

答案 0 :(得分:1)

我得到了答案,需要使用rotation属性并使用角度,在我的情况下是270

Text {
    id: name13
    text: qsTr("John")
    rotation : 270
}