假設我有這樣如何把附加屬性到子項
RowLayout {
MyItem {
Layout.fillWidth: true
Layout.fillHeight: true
... // other properties
}
MyItem {
Layout.fillWidth: true
Layout.fillHeight: true
... // other properties
}
}
的成分在其中MyItem.qml
是這樣
Rectangle {
... // other properties
// Layout.fillWidth: true
// Layout.fillHeight: true
}
我可以把Layout.fillWidth
到MyItem
定義,讓我不需要重複在RowLayout
?