本帖最后由 一路向北lm 于 2020-6-8 14:39 编辑
1.对话框
文件对话框file:///C:/Users/ADMINI~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg
//文件对话框,返回值是文件的路径
Qstring str = QFileDialog::getOpenFileName(this,
"打开文件","C:\\Users\\Administrator\\Desktop","(*.txt)");
qDebug() << str;
|