如何设置 CFileDialog 的默认文件类型?
我正在使用 CFileDialog
来显示打开的文件对话框。我已按如下方式设置过滤器:
static TCHAR BASED_CODE szFilter[] = _T("Chart Files (*.xlc)|*.xlc|")
_T("Worksheet Files (*.xls)|*.xls|Data Files (*.xlc;*.xls)|")
_T("*.xlc; *.xls|All Files (*.*)|*.*||");
每当我 DoModal
对话框时,我都需要将默认文件类型设置为“工作表文件”。我不知道该怎么做。 MS Paint 正在做的事情是,当我们打开打开文件对话框时,它会选择“所有图片文件”。
请让我知道该怎么做。
I am using CFileDialog
for displaying the open file dialog. I have set the filter as follows:
static TCHAR BASED_CODE szFilter[] = _T("Chart Files (*.xlc)|*.xlc|")
_T("Worksheet Files (*.xls)|*.xls|Data Files (*.xlc;*.xls)|")
_T("*.xlc; *.xls|All Files (*.*)|*.*||");
I need to set the default file type to be "Worksheet Files" whenever I DoModal
the dialog box. I am unable to figure out how to do it. MS Paint is doing, it selects the "All Picture files" when we open the open file dialog.
Please let me know how to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找
SetDefExt
函数< /a>. 这允许您指定打开/保存文件对话框的默认文件扩展名。请记住,您指定的字符串不应包含句点 (.)。当然,您也可以在构造函数中指定它。第二个参数是默认扩展名 (
lpszDefExt
)。You're looking for the
SetDefExt
function. This allows you to specify the default file extension for an open/save file dialog box. Remember that the string you specify should not contain a period (.).Of course, you could also just specify this in the constructor. The second parameter is the default extension (
lpszDefExt
).你应该读和写
这段代码将在程序运行时完成这项工作。为了能够在下次运行程序时显示上次使用的选择,您可以将 LastIndex 的值存储在注册表中。
You should read and write
This code will do the job during the run time of your program. To be able to display the last used selection next time you run your program, you can store the value of LastIndex in the Registry.