这是我的 QML 文件,其中包含一个文本组件:
import QtQuick 2.0
Item {
id: idItmWrapText
Text {
id: idTxtTitle
text: qsTr("Hello World")
font.pointSize: 20
}
}
现在在Test.qml
文件中,我将上述组件实例化了三次,但它在输出中只显示一次。我的Test.qml
文件如下所示:
import QtQuick 2.0
Item {
id: idItmWrapRect
width: 400
height: 400
Rectangle{
id: idRectDisplay
width: parent.width
height: parent.height
Column {
id: idClmnLayout
spacing: 50
x: 195
y: 200
MyText{
}
MyText{
}
MyText{
}
}
}
}
输出是:
**Hello World** //showing only once
为什么会这样?