|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
RECT rect;
static TCHAR szBuffer[] = TEXT("Hiding from the rain and snow.\n \
Trying to forget but I won't let go.\n \
Looking at a crowded street.\n \
Listening to my own heart beat.\n\n \
So many people all around the world.\n \
Tell me where do I find someone like you girl.");
switch (message)
{
case WM_PAINT:
hdc = BeginPaint(hwnd, &ps);
GetClientRect(hwnd, &rect);
DrawText(hdc, szBuffer, -1, &rect, DT_CENTER | DT_WORDBREAK | DT_EDITCONTROL);
EndPaint(hwnd, &ps);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
}
return DefWindowProc(hwnd, message, wParam, lParam);
}
-------------------------------------------------------------------------------------------------
为什么\n后面还有个\,删掉后面这个\就会出错
\表示这一行代码没有结束,接着看下一行的,\去掉就相当于这行代码在字符串之间断了
|
|