1 import Qt 4.7
2
3 Item {
4 width: 400; height: 500;
5 property int bindingWidth: text.width
6 property int bindingHeight: text.height
7
8 TextInput {
9 id: text
10 anchors.fill: parent
11 }
12 }