怎样的同一个qml 文件中实现自定义的组件重用
发布网友
发布时间:2023-05-28 00:02
我来回答
共1个回答
热心网友
时间:2023-06-29 01:10
Repeater{
id:repeater
model:10
Item {
id: tmp_01
width: parent.width
height: 100
property alias text: t1.text
Text {
id: t1
text: qsTr("line-1")
font.pixelSize: 20
anchors.centerIn: parent
color: "yellow"
}
}
}