我需要创建一个按钮来打开.doc或.pdf文件。仅当我使用QFileDialog
时才起作用:
QString docName = QFileDialog::getOpenFileName(this, tr("Arquivos"), "C:/Users/lucas/Desktop/HEMODIALISE/Hemodialise/Resources/Documentos", "All files (*.*)");
QDesktopServices::openUrl(QUrl("file:///"+docName, QUrl::TolerantMode));
但是我只想使用程序资源中的文件立即打开。
我该怎么做?