如何在MFC中获取另存为对话框

发布于 2024-10-26 01:06:52 字数 74 浏览 4 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

没企图 2024-11-02 01:06:52

以下是来自 MSDN 的打开对话框的示例:

void CMyClass::OnFileOpen()
{
   // szFilters is a text string that includes two file name filters:
   // "*.my" for "MyType Files" and "*.*' for "All Files."
   TCHAR szFilters[]= _T("MyType Files (*.my)|*.my|All Files (*.*)|*.*||");

   // Create an Open dialog; the default file name extension is ".my".
   CFileDialog fileDlg(TRUE, _T("my"), _T("*.my"),
      OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, szFilters);

   // Display the file dialog. When user clicks OK, fileDlg.DoModal() 
   // returns IDOK.
   if(fileDlg.DoModal() == IDOK)
   {
      CString pathName = fileDlg.GetPathName();

      // Implement opening and reading file in here.

      //Change the window's title to the opened file's title.
      CString fileName = fileDlg.GetFileTitle();

      SetWindowText(fileName);
   }
}

对于另存为对话框,只需更改 CFileDialog 调用:

   CFileDialog fileDlg(FALSE, _T("my"), _T("*.my"),
        OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, szFilters);

备注:

  • 某些参数是可选的。
  • szFilters 包含您需要的文件扩展名。

Here is an example from MSDN for an open dialog box :

void CMyClass::OnFileOpen()
{
   // szFilters is a text string that includes two file name filters:
   // "*.my" for "MyType Files" and "*.*' for "All Files."
   TCHAR szFilters[]= _T("MyType Files (*.my)|*.my|All Files (*.*)|*.*||");

   // Create an Open dialog; the default file name extension is ".my".
   CFileDialog fileDlg(TRUE, _T("my"), _T("*.my"),
      OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, szFilters);

   // Display the file dialog. When user clicks OK, fileDlg.DoModal() 
   // returns IDOK.
   if(fileDlg.DoModal() == IDOK)
   {
      CString pathName = fileDlg.GetPathName();

      // Implement opening and reading file in here.

      //Change the window's title to the opened file's title.
      CString fileName = fileDlg.GetFileTitle();

      SetWindowText(fileName);
   }
}

For the Save As dialog box, just change the CFileDialog call by :

   CFileDialog fileDlg(FALSE, _T("my"), _T("*.my"),
        OFN_FILEMUSTEXIST | OFN_HIDEREADONLY, szFilters);

Remarks:

  • Some arguments are optional.
  • szFilters contains the file extensions you need.
佼人 2024-11-02 01:06:52

像这样:

CFileDialog dlg(FALSE);
dlg.DoModal();

Like this:

CFileDialog dlg(FALSE);
dlg.DoModal();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文