BOOL CMyComboBox::PreTranslateMessage(MSG* pMsg) { // TODO: 在此添加专用代码和/或调用基类 if (m_read_only) { if (pMsg->message == WM_MOUSEWHEEL) //如果只读,则不响应鼠标滚轮消息 return TRUE; if (pMsg->message == WM_LBUTTONDOWN || pMsg->message == WM_LBUTTONDBLCLK || pMsg->mess...