import QtQuick 2.1 import QtQuick.Window 2.1 Window { minimumWidth: 600 minimumHeight: 600 onWidthChanged: { console.log("### Window.onWidthChanged " + width); } Rectangle { anchors.fill: parent color: 'red' id : rect onWidthChanged: { console.log("### Rectangle.onWidthChanged " + width); } } Component.onCompleted: { console.log("### Component.onCompleted window.width:" + width + " rect.width: " + rect.width); } }