Visual C++ 2012 RC, Win7
简体中文
项目属性 > 使用多字节字符集
当我运行这个程序时,窗口的标题显示一个字母“S”,而不是整个单词“Sample”。
#pragma comment(linker, "/SubSystem:Windows")
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, PSTR, int) {
WNDCLASSW wc = { 0 };
wc.style = CS_VREDRAW | CS_HREDRAW;
wc.hInstance = hInstance;
wc.hIcon = LoadIcon(nullptr, IDI_APPLICATION);
wc.hCursor = LoadCursor(nullptr, IDC_ARROW);
wc.hbrBackground = reinterpret_cast<HBRUSH>(GetStockObject(WHITE_BRUSH));
wc.lpszClassName = L"MyWindowClass";
wc.lpfnWndProc = [](HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
if (uMsg - WM_DESTROY)
return DefWindowProc(hWnd, uMsg, wParam, lParam);
else {
PostQuitMessage(0);
return HRESULT();
}
};
RegisterClassW(&wc);
CreateWindowExW(0, L"MyWindowClass", L"Sample",
WS_OVERLAPPEDWINDOW | WS_VISIBLE, CW_USEDEFAULT, SW_SHOW, CW_USEDEFAULT, 0,
nullptr, nullptr, hInstance, nullptr);
for (MSG msg; GetMessage(&msg, nullptr, 0, 0); DispatchMessage(&msg));
}
如果我使用 Unicode(项目属性),保持源代码不变,窗口标题显示“示例”,看起来是正确的。
如果我使用多字节,在源代码中我使用 WNDCLASS = { ..., "MyWindowClass" } 和 RegisterClassA,保持 CreateWindowExW 不变,窗口标题显示单词“Sample”,看起来正确。
如果我使用多字节,在源代码中我使用 CreateWindowExA("MyWindowClass", "Sample"),保持 WNDCLASSW 和 RegisterClassW 不变,窗口标题显示字母“S”。
是什么让它显示一个“S”,我做错了什么吗?
附加
如果我保持所有不变,即使用多字节,使用上面显示的代码,窗口标题显示字母“S”。
(如果您运行此程序并在窗口标题上看到“Sample”,而不是“S”,那么它更可能是 vc++ 2012(或 OS)的 chs 版本的特定问题)。