Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了一个基于 MFC 的项目,它当然有 GUI。现在我需要将其更改为非 GUI。所以,每当我开始构建项目时,它应该在后台运行而不是显示 GUI。
我希望我的问题很清楚。请建议我。谢谢
作为改造,这不是最简单的事情。最简单的方法是通过在主窗口(以及任何辅助窗口和任何其他 UI 元素的等效项)上使用 ShowWindow(SW_HIDE) 来隐藏 UI。
为什么不简单地创建支持 MFC 的控制台应用程序并使其成为 Windows 服务?