gpt4 book ai didi

c++ - 如何在 QComboBox 中显示文件夹 c++ 和 Qt 中的文件列表?

转载 作者:太空宇宙 更新时间:2023-11-04 15:23:14 26 4
gpt4 key购买 nike

我想在 QComboBox 中显示一个文件夹的所有文件。我已经测试了一些东西,但不是我想要的。

void pacientes::on_mostrarPaciente_clicked()
{
QDir path("C:/Users/Jaime/Desktop/interfaz/pacientes");
QStringList files = path.entryList(QDir::Files);

QComboBox comb;
qDebug()<<files;
comb.addItems(files);

comb.show();

}

在这个函数中,qDebug 没有为控制台显示任何内容。 qDebug 在其他函数中显示的东西,但在这个函数中什么也没有。我认为这不是很好

最佳答案

QDir path("d:/tmp");
QStringList files = path.entryList(QDir::Files);
QComboBox comb;
comb.addItems(files);
comb.show();

enter image description here

关于c++ - 如何在 QComboBox 中显示文件夹 c++ 和 Qt 中的文件列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14479160/

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