在 QML 的设计中,用户 reparent 似乎并没有真正“设想”,因为即使有可能,它也涉及创建和更改状态,这不方便添加到每个项目中。
import QtQuick 1.0
Item {
width: 200; height: 100
Rectangle {
id: redRect
width: 100; height: 100
color: "red"
}
Rectangle {
id: blueRect
x: redRect.width
width: 50; height: 50
color: "blue"
states: State {
name: "reparented"
ParentChange { target: blueRect; parent: redRect; x: 10; y: 10 }
}
MouseArea { anchors.fill: parent; onClicked: blueRect.state = "reparented" }
}
}
我想知道是否有一种更优雅的方式来重新设置项目而不用不必要的状态污染项目?