QボタンPane
には22個のボタンがあり、そのラベルのanchors.horizontalCenter
,anchors.verticalCenter
、sourceSize.width
のプロパティ(属性?)を1か所にまとめたいと思います。これは可能ですか?一部/すべての「サブ」アイテムに対してプロパティ/属性を設定する方法はありますか?
Pane {
AllButtons: SetThoseProperties {
label.sourceSize.width: 32
label.anchors.horizontalCenter: parent.horizontalCenter
label.anchors.verticalCenter: parent.verticalCenter
}
Button {
id: button1
// maybe some reference to the AllButtons thing?
label: Image {
source: "qrc:/image1.svg"
}
}
Button {
id: button1
// maybe some reference to the AllButtons thing?
label: Image {
source: "qrc:/image1.svg"
}
}
// ...
}
の代わり:
Pane {
AllButtons: SetThoseProperties {
label.sourceSize.width: 32
label.anchors.horizontalCenter: parent.horizontalCenter
label.anchors.verticalCenter: parent.verticalCenter
}
Button {
id: button1
// maybe some reference to the AllButtons thing?
label: Image {
source: "qrc:/image1.svg"
sourceSize.width: 20
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
}
}
Button {
id: button2
// maybe some reference to the AllButtons thing?
label: Image {
source: "qrc:/image2.svg"
sourceSize.width: 20
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
}
}
// ...
}