Windows CE - 禁用 CComboBox 突出显示

Windows CE - disable CComboBox highlight

我正在使用 Visual Studio 2008 使用 C++ 和 MFC 为 Windows CE 6 编写应用程序。

当我选择一个元素时,我想删除派生的 CComboBox class 的蓝色突出显示。 根据 this MSDN article,我无法将组合框的样式设置为 LBS_OWNERDRAWFIXED 或 CBS_OWNERDRAWFIXED 以在我的 DrawItem 函数上选择选区的颜色。

我试过使用消息 CBN_SELCHANGE 发送 WM_KILLFOCUS 消息。它部分工作:控件失去焦点(所选元素不再是蓝色),但如果我再次单击组合框,它不会显示元素列表。

我读到可以使用 paint 事件来设置突出显示的颜色,但我不知道或找不到如何执行此操作。

如何去除组合框的蓝色突出显示?

编辑:组合框是只读的(标记 CBS_DROPDOWNLIST)

在你的header中:

public:
virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);

在 cpp 中:

void CYourComboBox::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct) 
{
// TODO: Add your code to draw the specified item
CDC* pDC = CDC::FromHandle (lpDrawItemStruct->hDC);

if (((LONG)(lpDrawItemStruct->itemID) >= 0) &&
    (lpDrawItemStruct->itemAction & (ODA_DRAWENTIRE | ODA_SELECT)))
{
    // color item as you wish
}

if ((lpDrawItemStruct->itemAction & ODA_FOCUS) != 0)
    pDC->DrawFocusRect(&lpDrawItemStruct->rcItem);

}

模型取自这里:

Extended combobox

我找到了一个(肮脏的)解决方法,以防万一没有人提供更好的方法:

我在创建组合框时设置了父级:

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();
    }
}