在调用 CreateWindowEx(..) 之前没有任何错误。并且 CreateWindowEx 不返回 NULL。有趣的是,在调用 ShowWindow 后会显示窗口。
如您所见,在代码中有 2 个写入错误代码的消息框。第一个写 126,另一个写 0。
(错误 126 表示:ERROR_MOD_NOT_FOUND 126 (0x7E) 找不到指定的模块。)
创建窗口后,窗口无法正常工作,如您在图像中看到的那样,如果我的指针在创建窗口的区域中处于加载位置等位置,当我将鼠标光标移动到窗口中时,它不会t 显示箭头,但显示调整大小光标。
对不起我的英语并感谢您的帮助。
代码:WinDeneme.cpp
// WinDeneme.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
const wchar_t *AppName = L"Example";
unsigned int ClassID=0;
wchar_t Error[100];
LRESULT CALLBACK Proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
int APIENTRY _tWinMain(_In_ HINSTANCE hInstance,
_In_opt_ HINSTANCE hPrevInstance,
_In_ LPTSTR lpCmdLine,
_In_ int nCmdShow)
{
wchar_t *ClassName = (wchar_t*)malloc(sizeof(wchar_t) * 100);
swprintf(ClassName,100,L"%s_%d",AppName,ClassID);
ClassID++;
WNDCLASS *Class = (WNDCLASS*)calloc(1,sizeof(WNDCLASS));
Class->lpszClassName = ClassName;
Class->hInstance = hInstance;
Class->lpfnWndProc = (WNDPROC)Proc;
RegisterClass(Class);
HWND Win = CreateWindowEx(
0, // Optional window styles.
ClassName, // Window class
AppName, // Window text
WS_OVERLAPPEDWINDOW, // Window style
// Size and position
CW_USEDEFAULT, CW_USEDEFAULT, 200, 200,
NULL, // Parent window
NULL, // Menu
hInstance, // Instance handle
NULL // Additional application data
);
swprintf(Error,100,L"%d",GetLastError());
MessageBox(0,Error,L"Error",MB_OK); // 126
ShowWindow(Win,nCmdShow);
swprintf(Error,100,L"%d",GetLastError());
MessageBox(0,Error,L"Error",MB_OK); // 0
MSG msg = { };
while (GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return EXIT_SUCCESS;
}
LRESULT CALLBACK Proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
case WM_DESTROY:
PostQuitMessage(0);
return 0;
case WM_PAINT:
{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
FillRect(hdc, &ps.rcPaint, (HBRUSH) (COLOR_WINDOW+1));
EndPaint(hwnd, &ps);
}
return 0;
}
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
标准数据文件
#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <memory.h>
#include <tchar.h>
图像(我使用我的相机,因为光标不会出现在打印屏幕上):
**编辑:我通过添加解决了指针问题
Class->hCursor = LoadCursor(NULL, IDC_ARROW);
但我仍然在 VS2012 Express 中收到错误 126。