2

在使用 WinAPI 时,我是一个新手。我正在关注一个教程,在那里我找到了一个代码片段。该片段演示了一个基本程序。我在下面发布我的完整代码:

#include "a.h"
#include "windows.h"

LRESULT CALLBACK WndProcedure(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);

INT WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
               LPSTR lpCmdLine, int nCmdShow)
{
    WNDCLASSEX WndClsEx;
    WndClsEx.cbSize      = sizeof(WNDCLASSEX);
    WndClsEx.style       = CS_HREDRAW | CS_VREDRAW;
    WndClsEx.lpfnWndProc = WndProcedure;
    WndClsEx.cbClsExtra  = 0;
    WndClsEx.cbWndExtra  = 0;
    WndClsEx.hInstance   = hInstance;

    return 0;
}

LRESULT CALLBACK WndProcedure(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
{
    switch(Msg)
    {
    case WM_DESTROY:
        PostQuitMessage(WM_QUIT);
        break;
    default:
        return DefWindowProc(hWnd, Msg, wParam, lParam);
    }
    return 0;
}

从 Qt Creator 运行代码时,我没有收到任何错误。但是,运行它时不会出现任何窗口,但输出控制台会显示:

“MyProgram.exe 以代码 0 退出”

什么可能导致这种情况?

4

2 回答 2

3

我在下面发布我的完整代码:

您的代码看起来很像标准 Win32,但它缺少很多代码。

例如,这个非常简单的test.cpp文件包含一个完整的 Win32 应用程序:

#define STRICT
#include <windows.h>

long PASCAL WndProc (HWND, UINT, WPARAM, LPARAM);

int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                     LPSTR lpszCmdParam, int nCmdShow)
{
   static char szClassName[] = "Hello World";
   MSG         msg;
   WNDCLASS    wndclass;

   memset(&wndclass, '\0', sizeof(wndclass));

   wndclass.style          = CS_HREDRAW|CS_VREDRAW;
   wndclass.lpfnWndProc    = WndProc;
   wndclass.cbClsExtra     = 0;
   wndclass.cbWndExtra     = 0;
   wndclass.hInstance      = hInstance;
   wndclass.hIcon          = LoadIcon (NULL, IDI_APPLICATION);
   wndclass.hCursor        = LoadCursor (NULL, IDC_ARROW);
   wndclass.hbrBackground  = (HBRUSH)GetStockObject (WHITE_BRUSH);
   wndclass.lpszMenuName   = 0;
   wndclass.lpszClassName  = szClassName;
   RegisterClass (&wndclass);

   // create a new window 
   HWND hwnd = CreateWindowEx(WS_EX_OVERLAPPEDWINDOW,
                              szClassName,
                              "My Hello World Window",
                              WS_OVERLAPPEDWINDOW,
                              CW_USEDEFAULT,
                              CW_USEDEFAULT,
                              CW_USEDEFAULT,
                              CW_USEDEFAULT,
                              NULL,
                              NULL,
                              hInstance,
                              NULL);

   ShowWindow (hwnd, nCmdShow);

   while (GetMessage (&msg, NULL, 0, 0)) {
      TranslateMessage (&msg);
      DispatchMessage (&msg);
   }

   return msg.wParam;
}

long APIENTRY WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message) {
       case WM_DESTROY:
          PostQuitMessage (0);
          return 0;
    }

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

它可以从命令行编译和链接:

C:\TEMP>cl test.cpp user32.lib gdi32.lib
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86
Copyright (C) Microsoft Corporation.  All rights reserved.

test.cpp
Microsoft (R) Incremental Linker Version 9.00.30729.01
Copyright (C) Microsoft Corporation.  All rights reserved.

/out:test.exe
test.obj
user32.lib
gdi32.lib

生成的test.exe可以运行,它会显示一个窗口:

C:\TEMP>test.exe
于 2012-03-19T04:09:01.710 回答
1

正如 Hans Passant 在他的评论中建议的那样,你错过了很多代码。我不知道您从哪个教程中复制了此代码段,但肯定那里肯定有更多代码。

例如,您没有注册它,也没有创建实际的窗口,您没有显示它并且(正如@rodrigo 提到的)您错过了消息循环。MSDN 上的这个例子说明了这一切的样子。

是的,您可以在 Qt Creator 中完美地开发应用程序,而无需实际使用 Qt 作为您的用户界面。然而,我不会拒绝它。由于您拥有所有可用的工具,因此也可以看看 Qt 本身。你可能只是喜欢它。

于 2012-03-17T21:06:09.730 回答