1 2 3 4 5 6 7 8 9 10 11
import QtQuick 1.0 Rectangle { property QtObject myInput: input width: 400; height: 200; color: "green" TextInput { id: input; focus: true text: "ABCDefgh" } }