我们说我有文字组成部分:
Text {
text: "Hello"
wrapMode: Text.WordWrap
}
如何选择它?
答案 0 :(得分:3)
这是一个报告的错误:QTBUG-14077,解决方法是在只读模式下使用TextEdit
:
TextEdit {
text: "Hello"
readOnly: true
wrapMode: Text.WordWrap
selectByMouse: true
}