怎么获取win32 combobox 列表内容
drop_down_list = CreateWindow(_T("combobox"), NULL, WS_CHILD | WS_VISIBLE | WS_VSCROLL | CBS_DROPDOWNLIST | CBS_HASSTRINGS,190, 20, 80, 100, hWnd, (HMENU)DROP_DOWN_LIST, hInstance, NULL);
我百度到的是
UINT uCount = NULL;
uCount = SendMessage(drop_down_list, CB_GETCOUNT, 0, 0);
这是获取列表顺序的值。我想获取列表里面的内容。请问,该怎么弄。