需要帮助理解 MFC 项目
谁能向我解释一下我创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将其作为对话框应用程序打开(可能是因为您没有编写文档编辑器,因此不需要“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).