能给我说一下组合框消息CB_SETITEMDATA的具体作用吗?
答案:3 悬赏:10 手机版
解决时间 2021-03-19 22:20
- 提问者网友:低吟詩仙的傷
- 2021-03-19 13:43
能给我说一下组合框消息CB_SETITEMDATA的具体作用吗?
最佳答案
- 五星知识达人网友:轻雾山林
- 2021-03-19 13:56
C/C++ code
CB_SETITEMDATA
An application sends a CB_SETITEMDATA message to set the value associated with the specified item in a combo box.
To send this message, call the SendMessage function with the following parameters.
SendMessage(
(HWND) hWnd, // handle to destination window
CB_SETITEMDATA, // message to send
(WPARAM) wParam, // item index
(LPARAM) lParam // item data (DWORD)
);
Parameters
wParam
Specifies the item's zero-based index.
lParam
Specifies the new value to be associated with the item.
Return Values
If an error occurs, the return value is CB_ERR.
CB_SETITEMDATA
An application sends a CB_SETITEMDATA message to set the value associated with the specified item in a combo box.
To send this message, call the SendMessage function with the following parameters.
SendMessage(
(HWND) hWnd, // handle to destination window
CB_SETITEMDATA, // message to send
(WPARAM) wParam, // item index
(LPARAM) lParam // item data (DWORD)
);
Parameters
wParam
Specifies the item's zero-based index.
lParam
Specifies the new value to be associated with the item.
Return Values
If an error occurs, the return value is CB_ERR.
全部回答
- 1楼网友:春色三分
- 2021-03-19 15:35
哪里的组合框?
- 2楼网友:詩光轨車
- 2021-03-19 14:28
你好!
setitemdata对应 getdataitem,set相当于一个关联的动作,用get可以得到这个关联的关系,这样,一个组合框中的INDEX就对应两组内容,一个是组合框中显示的内容,一个是set关联的内容,可以方便的从一个得到另外两组内容。
打字不易,采纳哦!
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯