【问题标题】:Win32 program compiles but no window appearsWin32程序编译但不出现窗口
【发布时间】:2011-12-16 14:28:18
【问题描述】:

我正在编译一个简单的 Win32 api 程序,但问题是它编译得很好但没有出现窗口。我在taskmanager中检查了进程,程序在那里,但没有显示窗口。我在 windows 7 32 位下使用带有 GNU GCC 编译器的 CodeBlocks IDE 10.05。 我知道在stackoverflow上有一个类似的问题,但是给出的解决方案是'=='而不是'='。这是代码:

#include <windows.h>
#include <tchar.h>

/* Global Vars */
HINSTANCE hInst;
HWND wndHandle;
int winWidth = 640;
int winHeight = 480;

//func prototypes
bool InitWindow(HINSTANCE hInst, int width, int height);
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
/********************************************************
* WINMAIN FUNCTION
*********************************************************/
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
{
hInst = hInstance;

//app window

if (!InitWindow(hInst, winWidth, winHeight))
{
    return false;
}

// MESSAGE LOOP
MSG msg = {0};
while (WM_QUIT != msg.message)
{
    //window messages
    while(PeekMessage(&msg, NULL,0,0, PM_REMOVE) == TRUE)
    {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }
    //additional logic
}
return (int)msg.wParam;
 }

/*******************************************************************
* InitWindow
* Inits and creates and main app window
* Inputs - application instance - HINSTANCE
           Window width - int
           Window height - int
* Outputs - true if successful, false if failed - bool
*******************************************************************/
bool InitWindow(HINSTANCE hInstance, int width, int height)
{
// Register class
WNDCLASSEX wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style          = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc    = WndProc;
wcex.cbClsExtra     = 0;
wcex.cbWndExtra     = 0;
wcex.hInstance      = hInstance;
wcex.hIcon          = 0;
wcex.hCursor        = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground  = (HBRUSH) + (COLOR_WINDOW+1);
wcex.lpszMenuName   = NULL;
wcex.lpszClassName  = TEXT("DirectX 10 Example");
wcex.hIconSm        = 0;

if(!RegisterClassEx(&wcex))
{
  return false;
}

// resize window
RECT rect = { 0, 0, width, height };
AdjustWindowRect(&rect, WS_OVERLAPPEDWINDOW, false);

// create the window from the class above
wndHandle = CreateWindow(   TEXT("DX 10 Example"),
                            TEXT("DX10 WINDOW"),
                            WS_OVERLAPPEDWINDOW,
                            CW_USEDEFAULT,
                            CW_USEDEFAULT,
                            rect.right - rect.left,
                            rect.bottom - rect.top,
                            0,
                            0,
                            hInstance,
                            0);
if(wndHandle == 0)
{
    return false;
}
ShowWindow(wndHandle, SW_SHOW);
UpdateWindow(wndHandle);
return true;
}
/*******************************************************************
* WndProc
* The main window procedure for the application
* Inputs - application window handle - HWND
           message sent to the window - UINT
           wParam of the message being sent - WPARAM
           lParam of the message being sent - LPARAM
* Outputs - LRESULT
*******************************************************************/
 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
 {
   switch (message)
{
    // Allow the user to press the escape key to end the application
    case WM_KEYDOWN:
        switch(wParam)
        {
            // Check if the user hit the escape key
            case VK_ESCAPE:
              PostQuitMessage(0);
            break;
        }
    break;

        // The user hit the close button, close the application
    case WM_DESTROY:
            PostQuitMessage(0);
    break;
    }

    return DefWindowProc(hWnd, message, wParam, lParam);
}

【问题讨论】:

  • 使用 assert() 捕捉错误。
  • 我推荐使用 msvc 进行 windows 开发——它可以说是最好的 windows 编译器(并且 express 版本是免费的,但也非常好)

标签: c++ winapi codeblocks


【解决方案1】:

你有 wcex.lpszClassName = TEXT("DirectX 10 示例");

wndHandle = CreateWindow( TEXT("DX 10 Example"), TEXT("DX10 窗口"),

【讨论】:

  • 非常感谢,问题解决了,一个可怕的错误:(,但是为什么编译器没有抱怨这个?不应该吗?
  • @Polizel:编译器猜不出你打错了。这就是为什么您应该始终对需要重复的值使用常量(而不是文字)。
【解决方案2】:

“CreateWindow”必须使用与“RegisterClass”相同的类名。

在您的源代码中,这两者不同:

wcex.lpszClassName  = TEXT("DirectX 10 Example");
...
wndHandle = CreateWindow(TEXT("DX 10 Example"), ...

【讨论】:

    猜你喜欢
    • 2020-03-21
    • 1970-01-01
    • 2022-01-24
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2010-10-11
    • 1970-01-01
    相关资源
    最近更新 更多