我有这条QML代码:
Column {
spacing: units.gu(2)
anchors {
fill: parent
centerIn: parent
}
Row {
spacing: units.gu(4)
...
}
Row {
spacing: units.gu(4)
...
}
Row {
spacing: units.gu(4)
...
}
Row {
spacing: units.gu(4)
...
}
}
关于QML编程的最佳实践,如何重用代码以避免常见元素的重复属性?比如,在上面的例子中,避免行“spacing:units.gu(4)”。
答案 0 :(得分:10)
将您的代码放在单独的qml文件中,并将该文件名用作元素。例如
//文件MyCustomRow.qml
Row {
spacing: units.gu(4)
...
}
然后在你的其他qml文件中:
Column {
spacing: units.gu(2)
anchors {
fill: parent
centerIn: parent
}
MyCustomRow{
}
MyCustomRow{
}
MyCustomRow{
}
MyCustomRow{
}
}
事实上你可以使用转发器:
Column
{
spacing: units.gu(2)
anchors
{
fill: parent
centerIn: parent
}
Repeater
{
model : 5
MyCustomRow
{
}
}
}
编辑:
要在单个文件中执行此操作(如注释中所述),您可以使用Qml Component元素以及Loader元素:
Column {
spacing: units.gu(2)
anchors {
fill: parent
centerIn: parent
}
Component
{
id : myCustomRow
Row
{
spacing: units.gu(4)
...
}
}
Loader {
sourceComponent : myCustomRow
}
Loader {
sourceComponent : myCustomRow
}
Loader {
sourceComponent : myCustomRow
}
Loader {
sourceComponent : myCustomRow
}
}