GetSel方法总是在CEdit控件上返回零

时间:2015-11-26 11:46:14

标签: c++ mfc cedit ccombobox

在MFC应用程序中,对CEdit对话的控制进行了子类化。另一个对话框上有一个数字键盘,用于向该文本框发送值。如果文本在编辑控件上突出显示,GetSel方法将返回突出显示文本的开始和结束索引,这将替换为来自键盘的值。这很好。

现在,如果子类CEdit成为自定义CComboBox控件的一部分,则GetSel控制组合框的CEdit方法始终返回0.

我似乎没有意识到原因和解决方案是什么。非常感谢任何帮助。感谢。

更新

以下是尝试获取突出显示文本的代码段

BOOL CBaseDialog::PreTranslateMessage(MSG* pMsg) 
{
    if (pMsg->message == WM_KEYDOWN && pMsg->lParam == 2)
    {
        switch (pMsg->wParam)
        {
            case VK_TAB:
                //NextDialogCtrl();
                break;
            case 'ret':
                //keybd_event(VK_RETURN, 0, 0, 0);
                return FALSE;
            case '?':
                break;
            default:
                if (m_LastFocused >= 0)
                {        
                    CWnd* pwnd = GetDlgItem(m_LastFocused);

                    if (pwnd->IsKindOf(RUNTIME_CLASS(CComboBox)) )
                    {
                        CCustomComboBox* ctl = (CCustomComboBox*)pwnd;  

                        //this method always returns 0 index for the 
                        //start and end position index
                        ctl->m_edit->GetSel(m_LastStPos, m_LastEndPos);
                    }
                }
        } break;
    }
}

组合的子类是这样的:

BOOL CSymbolDlg::OnInitDialog() 
{
    CDialog::OnInitDialog(); 

    //combo is CCustomComboBox type
    combo.SubclassDlgItem(IDC_COMBO,this);

   //rest of the code...
}

CEdit控件:

HBRUSH CCustomComboBox::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
    if (nCtlColor == CTLCOLOR_EDIT)
    {
        //[ASCII 160][ASCII 160][ASCII 160]Edit control
        if (m_edit.GetSafeHwnd() == NULL)
            m_edit.SubclassWindow(pWnd->GetSafeHwnd());
    }
    else if (nCtlColor == CTLCOLOR_LISTBOX)
    {
        //ListBox control
        if (m_listbox.GetSafeHwnd() == NULL)
            m_listbox.SubclassWindow(pWnd->GetSafeHwnd());
    }
    HBRUSH hbr = CComboBox::OnCtlColor(pDC, pWnd, nCtlColor);
    return hbr;
}

0 个答案:

没有答案