QML ListView height:高度设置不够,内容显示问题
QML 中使用ListView显示一组字符串,如果ListView的height设置的不够高,字符串不能正常显示
正常代码:
import QtQuick 2.0
ListView {
id:lv
width: 200; height: 240// <<--此处高度设置足够
clip: true
model: ["Enterprise", "Colombia", "Challenger", "Discovery", "Endeavour", "Atlantis"]
delegate: myDelegate
Component {
id: myDelegate
Rectangle{
border.color: "black"
width: 180; height: 40
Text {text: modelData}
}
}
}
正常效果:
如果将ListView的height设置成120,运行qmlscene载入该qml文件,有可能会死机,更多的情况是字符串无法显示。
错误现象:
请帮忙,谢谢
最高输爲哀
11 years, 2 months ago