gpt4 book ai didi

QT/QML :How to show a message when the model has no data

转载 作者:行者123 更新时间:2023-12-04 06:22:58 24 4
gpt4 key购买 nike

我已经实现了一个简单的模型 View 应用程序,当模型中没有数据时,ListView 只是一个空白表单。我想知道如何显示一条方便的消息,告诉模型没有数据。谢谢你。

最佳答案

至少使用 QtQuick2 你可以做这样的事情:

import QtQuick 2.9
import QtQuick.Controls 2.2

ListView {
model: ...
clip: true

Label {
anchors.fill: parent
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
visible: parent.count == 0
text: qsTr("Nothing to show yet!")
font.bold: true
}
}

关于QT/QML :How to show a message when the model has no data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6342443/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com