有關屬性繫結的基礎知識

考慮這個簡單的例子:

import QtQuick 2.7
import QtQuick.Controls 2.0

ApplicationWindow {
    visible: true
    width: 400
    height: 640

    Rectangle{
        id: rect
        anchors.centerIn: parent
        height: 100
        width: parent.width
        color: "blue"
    }
}

在上面的例子中,Rectangle 的寬度繫結到它的父節點的寬度。如果更改正在執行的應用程式視窗的寬度,矩形的寬度也會更改。