在 QMessageBox 中显示 QListView

Show QListView in QMessageBox

我对 QT 完全陌生,觉得它很混乱。

我创建了一个 QListView(称为“listview”)并想在我的 QMessageBox 中显示它:

const int resultInfo = QMessageBox::information(this, tr("Generate Software"),
    tr("The following files will be changed by the program:"),
    => Here the QListView should show up!
    QMessageBox::Yes | QMessageBox::No);
if (resultInfo != QMessageBox::Yes) {
    return;
}

这有可能吗?

QMessageBox 旨在仅提供文本和按钮。参见 link

如果您只想获得“更多详细信息”文本,请尝试使用 detail text property。在这种情况下,您将必须使用其构造函数创建消息框并显式设置图标和文本,而不是使用方便的 information() 函数。

如果您仍然希望在消息框中有一个列表视图,您应该考虑使用 QDialog,它是 QMessageBox 的基础 class。下面的小例子:

#include "mainwindow.h"

#include <QDialog>
#include <QListView>
#include <QVBoxLayout>
#include <QLabel>
#include <QPushButton>

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
{
    QDialog *dialog = new QDialog{this};
    dialog->setWindowTitle(tr("Fancy title"));

    auto button = new QPushButton{tr("OK"), this};
    connect(button, &QPushButton::clicked, dialog, &QDialog::accept);

    QVBoxLayout *layout = new QVBoxLayout{dialog};
    layout->addWidget(new QLabel{tr("Description"), this});
    layout->addWidget(new QListView{this});
    layout->addWidget(button);

    dialog->show();
}

MainWindow::~MainWindow()
{
}