简体   繁体   English

需要有关基本Windows C的帮助

[英]Need Help on basic Windows C

I am new to learn creating a WIN32 program using c++, however, when I follow the instructions of a book to try to create my first program, I experience the following problem 我是新手学习使用c ++创建WIN32程序,然而,当我按照书的说明尝试创建我的第一个程序时,我遇到了以下问题

#include <windows.h>

const char g_szClassName[] = "myWindowClass";

//Step 4: the Window Procedure
LRESULT CALLBACK WndProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
    case WM_CLOSE:DestroyWindow(hwnd); break;
    case WM_DESTROY:PostQuitMessage(0); break;
    deafult:
        return DefWindowProc(hwnd, msg, wParam, lParam);
}
return 0;
}

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
WNDCLASSEX wc;
HWND hwnd;
MSG Msg;

//Step 1: Registering the Window Class
wc.cbSize       =sizeof(WNDCLASSEX);
wc.style        =0;
wc.lpfnWndProc  =WndProc;
wc.cbClsExtra   =0;
wc.cbWndExtra   =0;
wc.hInstance    =hInstance;
wc.hIcon        =LoadIcon(NULL, IDI_APPLICATION);
wc.hCursor      =LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground=(HBRUSH)(COLOR_WINDOW+1);
wc.lpszMenuName =NULL;
wc.lpszClassName=g_szClassName;
wc.hIconSm      =LoadIcon(NULL, IDI_APPLICATION);

if(!RegisterClassEx(&wc))
{
    MessageBox(NULL, "Window Registration Failed!", "Error!", MB_ICONEXCLAMATION | MB_OK);
    return 0;
}

//Step 2: Creating the Window
hwnd = CreateWindowEx(WS_EX_CLIENTEDGE, g_szClassName, "The title of my window", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 240, 120, NULL, NULL, hInstance, NULL);
if(hwnd == NULL)
{
    MessageBox(NULL, "Window Creation Failed!", "Error!", MB_ICONEXCLAMATION | MB_OK);
    return 0;
}

ShowWindow(hwnd, nCmdShow);
UpdateWindow(hwnd);

//Step 3: The Message Loop
while(GetMessage(&Msg, NULL, 0, 0) > 0)
{
    TranslateMessage(&Msg);
    DispatchMessage(&Msg);
}
return Msg.wParam;
}

but it keeps returning "Window Creation Failed!", I don't know what's wrong with it and I have done a lot of proofreading. 但它不断返回“窗口创建失败!”,我不知道它有什么问题,我做了很多校对。 Please help me! 请帮我!

case WM_CLOSE:DestroyWindow(hwnd); break;
case WM_DESTROY:PostQuitMessage(0); break;
deafult:
    return DefWindowProc(hwnd, msg, wParam, lParam);

It might be hard to see, and it's cruel that it compiles because of it being a normal label (though I get a warning from -Wunused-label ), but you misspelled default . 它可能很难看到,并且由于它是一个正常的标签而编译它是残酷的(尽管我从-Wunused-label得到警告),但你拼错了default This causes WM_NCCREATE to not be handled, which causes your window creation to fail. 这会导致无法处理WM_NCCREATE ,从而导致窗口创建失败。

It's worth noting that you handle WM_CLOSE in the same way as DefWindowProc , just calling DestroyWindow . 值得注意的是,你以与DefWindowProc相同的方式处理WM_CLOSE ,只是调用DestroyWindow You can leave out that case and still end up with the same thing happening when your window is closed. 您可以忽略这种情况,但最终还是会在窗口关闭时发生同样的事情。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM