2

我想处理用户对 ListBox 的双击,但无法处理列表框活动,因为它不会向窗口发送消息。我有这个:

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message)                  /* handle the messages */
    {
        case WM_COMMAND:
        {
             switch(LOWORD(wParam))
             {
                  case IDC_LISTBOX1:
                  {
                       if(HIWORD(wParam) == LBN_DBLCLK)
                       {
                            //...
                       }
                       //...
                  }
             //...
             }
        //...
        }
    //...
    }
    return 0;
}

如何处理列表框消息?

4

0 回答 0