在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;
}