QT笔记之QFileDialog

来源:互联网 发布:cookie json 编辑:程序博客网 时间:2024/05/29 15:06

就是平时打开文件时看到的对话框,这里只是简单的演示,并非真正的打开

void MainWindow::open(){    QString path=QFileDialog::getOpenFileName(this,tr("Open file"),".",tr("*.dll *.txt *.jpg *.png"));    if(path.length()==0)    {        QMessageBox::information(NULL,tr("Info"),tr("You select anything"));    }    else    {     QMessageBox::information(NULL, tr("Info"),tr("You select ") + path);    }}