-1

我正在尝试使用该函数作为在 Win32 应用程序中显示鼠标 X 和 Y 值的一种方式。它替换了 x 值,但对于 y,它将其设置为零。我不知道为什么,我在应用程序期间设置了一个断点。Y 不为 0。

编辑我将数据类型更改为 int 并且由于某种原因它现在正在工作。我最初使用 long long 是因为我处理输入的方式不同,并且该函数需要该数据类型。我忘记改回来了。我不太确定为什么它不能长时间使用。

LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
int wmId, wmEvent;
PAINTSTRUCT ps;
HDC hdc;

static long long x = -1, y = -1;

switch (message)
{
case WM_MOUSEMOVE:
    {
        x = LOWORD(lParam);
        y = HIWORD(lParam);
        InvalidateRect(hWnd, 0, TRUE);

        break;
    }
case WM_COMMAND:
    wmId    = LOWORD(lParam);
    wmEvent = HIWORD(wParam);
    // Parse the menu selections:
    switch (wmId)
    {
    case IDM_ABOUT:
        DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About);
        break;
    case IDM_EXIT:
        DestroyWindow(hWnd);
        break;
    default:
        return DefWindowProc(hWnd, message, wParam, lParam);
    }
    break;
case WM_PAINT:
    {
        hdc = BeginPaint(hWnd, &ps);

        RECT rect;
        rect.left = x + 20;
        rect.top = y - 20;
        rect.right = x + 200;
        rect.bottom = y + 200;

        wchar_t displayMessage[100];
        swprintf(displayMessage, 100, L"(%d, %d)", x, y);

        DrawText(hdc, displayMessage, -1, &rect, NULL);

        EndPaint(hWnd, &ps);
        break;
    }
case WM_DESTROY:
    PostQuitMessage(0);
    break;
default:
    return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
4

2 回答 2

1

您忘记了缓冲区长度作为第二个参数,请参阅文档

wchar_t displayMessage[100];
swprintf(displayMessage, 100, L"(%d, %d)", x, y);

更新:用于%lld.long long

于 2013-03-15T22:09:44.610 回答
0

%d不是 a 的正确标识符long long

如果你坚持使用 C 语言swprintf,请将变量更改为int. 或使用%lld. 或者按照下面的方式投射它们。

swprintf(displayMessage, 100, L"(%d, %d)", (int)x, (int)y);

编辑:

如果您不喜欢 C 语言,则不必在此上下文中使用它。

无论使用什么整数类型,这也将起作用。

    std::wstringstream stream;
    stream << L"(" << x << L", " << y << L")";
    DrawText(hdc, stream.str().c_str(), -1, &rect, NULL);
于 2013-03-15T22:21:12.200 回答