我正在使用 Visual Studio 2008 使用 C++ 和 MFC 为 Windows CE 6 编写应用程序。
当我选择一个元素时,我想删除 CComboBox 派生类的蓝色突出显示。根据this MSDN article , 我无法将组合框的样式设置为 LBS_OWNERDRAWFIXED 或 CBS_OWNERDRAWFIXED 以在我的 DrawItem 函数上选择选区的颜色。
我尝试使用消息 CBN_SELCHANGE 发送 WM_KILLFOCUS 消息。它部分起作用:控件失去焦点(所选元素不再是蓝色),但如果我再次单击组合框,它不会显示元素列表。
我读到我可以使用 paint 事件来设置突出显示的颜色,但我不知道或找不到如何执行此操作。
如何去除组合框的蓝色高亮?
编辑:组合框是只读的(标记 CBS_DROPDOWNLIST)
我找到了一个(肮脏的)解决方法,以防万一没有人提供更好的方法:
我在创建组合框时设置了父级:
customCombo.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP | CBS_DROPDOWNLIST | CBS_DROPDOWN, CRect(0, 0, 0, 0), **PARENT**, COMBO_ID);
当我使用完组合框时,以下几行将焦点放在父元素上。
CComboBox子类头文件中:
public:
afx_msg void OnCbnSelchange();
afx_msg void OnCbnSelendcancel();
afx_msg void OnCbnSelendok();
在源文件中:
void CustomCombo::OnCbnSelchange() {
//give focus to parent
CWnd* cwnd = GetParent();
if (cwnd != NULL) {
cwnd->SetFocus();
}
}
void CustomCombo::OnCbnSelendcancel() {
//give focus to parent
CWnd* cwnd = GetParent();
if (cwnd != NULL) {
cwnd->SetFocus();
}
}
void CustomCombo::OnCbnSelendok() {
//give focus to parent
CWnd* cwnd = GetParent();
if (cwnd != NULL) {
cwnd->SetFocus();
}
}
我是一名优秀的程序员,十分优秀!