我想在您的互联网浏览器上制作类似的东西。它将有一个文件,然后在列表底部有一个出口。所以我想让它像退出程序一样。(和 Dev C++ 和任何其他程序一样 [我不是在编写 Web 浏览器])
好的,这是我的代码,请帮忙:
#define ID_Exit 1
LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_CREATE:{
HMENU hMenubar = CreateMenu();
HMENU hFile = CreateMenu();
AppendMenu(hMenubar, MF_POPUP, (UINT_PTR)hFile, "File");
AppendMenu(hFile, MF_STRING, ID_Exit, "Exit");
SetMenu(hwnd, hMenubar);
break;
}
case WM_COMMAND:{
if (LOWORD(wParam) == ID_Exit){
void exit ( int status );
}
break;
}