如何在MFC中获取另存为对话框
如何在 MFC 中创建“另存为”对话框?
例如,当我在 MFC 中单击“另存为”时,会出现一个对话框。我该如何复制它?
How do I make a "save as" dialog in MFC?
For example, when I click "save as" in MFC, a dialog appears. How do I replicate that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是来自 MSDN 的打开对话框的示例:
对于另存为对话框,只需更改 CFileDialog 调用:
备注:
Here is an example from MSDN for an open dialog box :
For the Save As dialog box, just change the CFileDialog call by :
Remarks:
像这样:
Like this: