import QtQuick 2.4 Rectangle { id: root property alias text: textElement color: "lightsteelblue" Rectangle { id: textElement color: "red" x: 10 y: 10 width: parent.width - 20 height: parent.height - 20 } }