Win32 控制台应用程序或 CLR --> Windows 窗体应用程序?

发布于 2024-10-12 05:31:05 字数 241 浏览 3 评论 0原文

我必须有一个表单作为GUI,但我还需要使用win32 API编写,因为我需要在应用程序启动时创建另一个进程...

我创建了 Win32 控制台 --> 空项目..然后有一个选项可以添加 windows 表单 作为 UI...这可能吗???...因为我已经选择了基础项目是 win32 控制台应用程序。

但我确实需要申请中的表格。

I have to have a form as a gui,but i also need to write using win32 API as i need to create another process the moment the application is launched...

I created Win32 console-->empty project..then there was an option to add windows form as UI...Is it possible????...as i have chosen the base project to be win32 console application.

But i really need the form in the application.

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

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

发布评论

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

评论(2

和影子一齐双人舞 2024-10-19 05:31:05

C++/CLI 完全能够在控制台程序中显示 Windows 窗体,就像 Windows 控制台程序完全允许调用 CreateWindow 一样。但是,如果您选择控制台作为输出文件模式,那么除了您创建的任何表单之外,控制台窗口仍然会向您的用户显示。

C++/CLI is perfectly able to show a Windows Form in a console program, just as a windows console program is perfectly allowed to call CreateWindow. However, if you choose console as the output file mode then the console window is still going to show up to your user in addition to whatever forms you create.

不必了 2024-10-19 05:31:05

您不需要使用裸 Windows API 来创建进程。请参阅System.Diagnostics.Process

You don't need to use the bare Windows API to create processes. See System.Diagnostics.Process.

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