如何制作一个在使用时不暂停程序的菜单?

发布于 2024-11-09 01:17:53 字数 404 浏览 0 评论 0原文

这是我为程序创建菜单的代码:

WNDCLASS wc;
...
hInstance = GetModuleHandle(NULL);
wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
wc.lpfnWndProc = (WNDPROC) WndProc;
wc.hInstance = hInstance;
...
if(!RegisterClass(&wc)) ...

现在,如果我打开菜单,我的程序将暂停,直到我不再使用菜单,我该如何制作,以便即使我使用菜单,我的窗口也将继续呈现?我正在使用 OpenGL 窗口,如果这很重要的话。

请注意,菜单的渲染应该与此代码完全相同(因此它不会在我的 opengl 渲染区域上渲染菜单,而是为其自己的区域占用空间。

This is my code for creating my menu for the program:

WNDCLASS wc;
...
hInstance = GetModuleHandle(NULL);
wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
wc.lpfnWndProc = (WNDPROC) WndProc;
wc.hInstance = hInstance;
...
if(!RegisterClass(&wc)) ...

Now if i open the menu, my program will pause until i dont use the menu anymore, how do i make it so my window would keep rendering even if i use the menu? I am using OpenGL window, if that matters.

Note that the menu should render exactly like it does with this code (so it would not render the menu OVER my opengl render area, but take space for its own area.

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

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

发布评论

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

评论(1

在你怀里撒娇 2024-11-16 01:17:53

您需要在单独的线程中进行渲染 - 弹出菜单将始终停止单线程 Windows 应用程序。

You need to do your rendering in a separate thread - popping up a menu will always halt a single-threaded Windows application.

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