[code=QML]
Text{
width: 10
height: parent.height
wrapModel: Text.wrap
text: "abcdefghijklmnopqrstuvwxyz"
}
[/code]
这样text中的内容会变成多行文本,然后如何设置行距呢!?
------解决方案--------------------
可以的
Text{
width: 10
height: parent.height
wrapMode: Text.WrapAnywhere
lineHeight: 4
text: "abcdefghijklmnopqrstuvwxyz"
}