本文介绍了如何设置 QFileDialog 以设置初始选定的文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的意思是当对话框弹出时,根据文件管理器的一些文件处于选中状态.QFileDialog 有办法做到这一点吗?
I mean when the Dialog pop up, some files according to the filer are in selected state.Does QFileDialog has a way to do this?
推荐答案
QFileDialog fd;
// Enable multple selection
fd.setFileMode( QFileDialog::ExistingFiles);
// Select the files you need
fs.selectFile( "MyFirstFile");
fs.selectFile( "MySecondFile");
这篇关于如何设置 QFileDialog 以设置初始选定的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!