需要帮助理解 MFC 项目

发布于 2024-10-12 00:59:05 字数 73 浏览 2 评论 0原文

谁能向我解释一下我创建 MFC 项目时创建的文件是什么?运行对话框的主文件是什么。 抱歉,如果我在 MFC 中遇到了一些错误。 谢谢

can anyone please explain to me what are the files that created when i creating MFC project? what is the main file which running the dialog.
sorry if there is some mistakes i new in MFC.
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

乖乖 2024-10-19 00:59:05

如果您将其作为对话框应用程序打开(可能是因为您没有编写文档编辑器,因此不需要“doc-view”,并且没有菜单驱动应用程序的选项,否则,我对 MFC 感到不满):

“ App”是您的应用程序。它创建您的对话框,然后在其上调用 DoModal()。

默认情况下,它还会创建一个 stdafx.h 文件,如果您的任何源代码未能包含该文件,则会因“致命错误”而失败。 (又是WTF)。

If you opened it as a dialog application (probably because you are not writing a document editor so did not want a "doc-vieW" and there is no option for a menu-driven application otherwise, my pet peeve with MFC):

The "App" is your application. It creates your dialog then calls DoModal() on it.

It will also create by default a stdafx.h file and fail with a "fatal error" if any of your source fails to include it. (Another total WTF).

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