QT/QML:模型没有数据时如何显示消息
我已经实现了一个简单的模型视图应用程序,当模型中没有数据时,ListView 只是一个空白表单。我想知道如何显示一条方便的消息,告诉模型没有数据。谢谢。
I've implement a simple Model View app, when there is no data in the model, the ListView is just a blank form. I want to know how to show a convenient message,telling that the model has no data. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将列表视图和文本元素叠加在一起。根据 model.count 将可见性设置为 true 或 false
Overlay a listview and a text element on top of each other. Set visibilty to true or false depending on model.count
至少使用 QtQuick2 你可以做这样的事情:
At least with QtQuick2 you can do something like this: