我创建了一个带有text属性的矩形。我想在包装文本后做一些操作。我怎么知道文本是否包装,以便我可以做一些操作。请看下面的代码:
import QtQuick 1.1
Rectangle {
id:liveItem
width: parent.width;
color: "Transparent"
Rectangle
{
id:r1
width: 260
height: parent.height
color: isitemSelected ? "green" : "lightgrey"
anchors.margins: 1
Text {
id: mytext
visible: true;
font.pixelSize: 8;
color: isitemSelected ? "white" : "black"
wrapMode: Text.WordWrap
anchors.left: parent.left
clip:true
anchors.margins: 4
}
}
}