3
這裏是我的QML文件,其中包含一個文本組件:不能夠實例化多個對象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
這究竟是爲什麼?