MSDN Windows App教程问题
Posted
技术标签:
【中文标题】MSDN Windows App教程问题【英文标题】:MSDN Windows App Tutorial Trouble 【发布时间】:2014-06-23 13:38:47 【问题描述】:我正在尝试学习有关创建您的第一个 Windows 应用程序的介绍性教程。它说我应该有这个代码并且能够创建一个基本窗口。
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <tchar.h>
#include <WinDef.h>
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
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 = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = NULL;
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_APPLICATION));
if (!RegisterClassEx(&wcex))
MessageBox(NULL,
_T("Call to RegisterClassEx failed!"),
_T("Win32 Guided Tour"),
NULL);
return 1;
hInst = hInstance; // Store instance handle in our global variable
// The parameters to CreateWindow explained:
// szWindowClass: the name of the application
// szTitle: the text that appears in the title bar
// WS_OVERLAPPEDWINDOW: the type of window to create
// CW_USEDEFAULT, CW_USEDEFAULT: initial position (x, y)
// 500, 100: initial size (width, length)
// NULL: the parent of this window
// NULL: this application dows not have a menu bar
// hInstance: the first parameter from WinMain
// NULL: not used in this application
HWND hWnd = CreateWindow(
szWindowClass,
szTitle,
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT,
500, 100,
NULL,
NULL,
hInstance,
NULL
);
if (!hWnd)
MessageBox(NULL,
_T("Call to CreateWindow failed!"),
_T("Win32 Guided Tour"),
NULL);
return 1;
// The parameters to ShowWindow explained:
// hWnd: the value returned from CreateWindow
// nCmdShow: the fourth parameter from WinMain
ShowWindow(hWnd,
nCmdShow);
UpdateWindow(hWnd);
// Main message loop:
MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
TranslateMessage(&msg);
DispatchMessage(&msg);
return (int) msg.wParam;
它告诉我 szClassName 未定义,hInst 未定义,szTile 已定义。我在这里遗漏了一些明显的东西吗?如果对“http://msdn.microsoft.com/en-us/library/bb384843.aspx”有帮助,这里是教程的链接。
【问题讨论】:
把所有的_T
和TCHAR
都搞定,预定义UNICODE
,并将宽字符串传递给winapi 函数。所有新应用程序都应支持 Unicode。另外,查看底部的完整代码,您会发现缺少一些东西。
【参考方案1】:
好吧,错误说明了一切。看起来在教程中,他们这样做了
static TCHAR szWindowClass[] = _T("win32app");
static TCHAR szTitle[] = _T("Win32 Guided Tour Application");
至于未定义的hInst
,我不确定。尝试添加这两行,看看它是否有效。我想你会发现只是忘记了这两行。
您还应该有一个 WndProc
函数,您可以简单地定义如下:
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
return DefWindowProc(hWnd, message, wParam, lParam);
【讨论】:
我认为 OP 在用一些有用的东西填充之前只花了一秒钟的时间进行编译。当然,OP 完全没有定义,但对于最小的窗口,只需return DefWindowProc(…);
就可以了。以上是关于MSDN Windows App教程问题的主要内容,如果未能解决你的问题,请参考以下文章
获取在 Windows Server 2008 R2 上运行的 MSDN PeerChannel“SecureChat”
是否有适用于 Windows Vista/7/8 的新 Midi API?
如何在 Windows Store App 中通过 Web API(在线服务)与 xaml UI 绑定 JSON 数据?