1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import QtQuick 2.4 import QtQuick.Controls 1.3 Item { id: root property string content; property int contentWidth: 0; property int contentHeight: textView.contentHeight; Text { id: textView wrapMode: Text.WordWrap anchors.fill: parent text: content } }