CListBox的CBN_SELCHANGE CCOMboBox的LBN_SELCHANGE

来源:互联网 发布:网络女主播换衣服视频 编辑:程序博客网 时间:2024/06/08 03:44

LRESULT CALLBACK WindowProc(  HWND hwnd,       // handle to window  UINT uMsg,       // WM_COMMAND  WPARAM wParam,   // combo box identifier, CBN_SELCHANGE  LPARAM lParam    // handle to combo box (HWND));

The CBN_SELCHANGE notification message is sent when the user changes the current selection in the list box of a combo box

////////////////////////////////////////////////////////////////////////////////////////////

LRESULT CALLBACK WindowProc(  HWND hwnd,       // handle to window  UINT uMsg,       // WM_COMMAND  WPARAM wParam,   // list box identifier, LBN_SELCHANGE  LPARAM lParam    // handle to list box (HWND));

An application sends the LBN_SELCHANGE notification message when the selection in a list box is about to change.