嗨,我有一个DelegateChooser
10-20TableView
个不同DelegateChoice
的 s。如何将相同的背景应用于所有选择?我想避免必须为所有选择添加相同的背景,因为这是很多中继器代码和维护头痛:
DelegateChoice: {
Item {
Rectangle { id: background; anchors.fill: parent; color: "blue" }
Choice1 {}
}
...
Item {
Rectangle { id: background; anchors.fill: parent; color: "blue" }
Choice20 {}
}
}