0

我正在尝试捕获 WM_CHAR 键的值,然后将所有捕获的值放入一个字符串中。我尝试将按下的键值 2、3、4 和 5 与 _tcscat 连接,生成的 TCHAR 字符串看起来像这样“22232323423423452345”我想知道如何使 TCHAR 字符串看起来像 2345。以下是我的代码有。

LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{

      static PMSG   pmsg ;  
      int           i, iType ;
      int           StrLen;
      TCHAR     StrBuf[9];
      static TCHAR         tBuf[32];
      TCHAR     MyTchar[8] = TEXT ("A");
      WORD          wCharCode;

     switch (message)
    {
      case WM_PAINT:
        hdc = BeginPaint (hwnd, &ps) ;
        GetClientRect(hwnd, &rect);
        SelectObject (hdc, GetStockObject (SYSTEM_FONT)) ;
        SetBkMode (hdc, TRANSPARENT) ;          
        for (i = min (cLines, cLinesMax), cScreenLine=1; i>0 ; i--, cScreenLine++)
        {
             iType  =   pmsg[i-1].message == WM_CHAR ;


     if (!iType)
            {

              StrLen= wsprintf(StrBuf, TEXT("%s"), TEXT(" "));
     }
            else
     {
    wCharCode = (WORD)(pmsg[i-1].wParam & 0xffff);
          memcpy(&MyTchar, &wCharCode, 2);
                 StrLen = wsprintf(StrBuf[2], TEXT("%s"), &MyTchar);
    _tcscat(tBuf, MyTchar);


      }


      EndPaint (hwnd, &ps) ;

      return 0 ;

     case WM_DESTROY:
         PostQuitMessage (0) ;
         return 0 ;
 }

}
4

3 回答 3

1

我不明白您在 WM_PAINT 消息期间的消息处理。您可能希望将 WM_CHAR 完全作为单独的消息处理,您可以在其中跟踪字符串。

在您的之外WndProc,您将需要#include <string>;std::wstring keyPresses;

然后可以像处理 WndProc 中的任何其他事件一样处理 WM_CHAR。

case WM_CHAR:
    switch (wParam) 
    { 
        // First, handle non-displayable characters by beeping.
        case 0x08:  // backspace.
        case 0x09:  // tab.
        case 0x0A:  // linefeed.
        case 0x0D:  // carriage return.
        case 0x1B:  // escape.
        case 0x20:  // space.
            MessageBeep((UINT) -1); 
        break;

        // Next, handle displayable characters by appending them to our string.
        default:
            keyPresses += (wchar_t) wParam;
    } 
    break;

然后,您可以对该字符串执行任何操作,包括在 WM_PAINT 消息期间显示它。

于 2012-11-28T03:09:18.927 回答
0

在使用字符串缓冲区之前,您应该先清除它们。你可以使用 1. ZeroMemery 2. memset

和或

TCHAR     StrBuf[9];
====>
TCHAR     StrBuf[9] = {0};

最后,为什么你使用 tBuf 作为静态变量?

于 2012-11-28T03:04:20.470 回答
0

由于您使用的是 C++,因此请使用 std::string 或 std::wstring。它将更加简单和安全(没有缓冲区溢出)

于 2012-11-28T02:45:16.037 回答