[ VC++ ]关于ComboBox的 GetCurSel() 改变和它关联的CString变量 为什么得到的不是 -1

本文探讨了VC++中ComboBox控件的GetCurSel()返回值在直接输入和SetWindowText设置文本时的区别。当ComboBox允许编辑时,输入内容不会改变GetCurSel()的返回值。同时,提供了获取选中项文字和检查输入字符串是否在列表中的方法,并指出ComboBox不自动添加编辑内容到列表,需要自定义实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

ComboBox直接输入的时候会自动选择匹配的列表项,SetWindowText则不会  
---------------------------------------------------------------  
 
//得到ComboBox的文字  
void  GetComboBoxString(HWND  hWndCtrl,  CString&  value)  
{  
       //  just  get  current  edit  item  text  (or  drop  list  static)  
       int  nLen  =  ::GetWindowTextLength(hWndCtrl);  
       if  (nLen  >  0)  
       {  
               //  get  known  length  
               ::GetWindowText(hWndCtrl,  value.GetBufferSetLength(nLen),  nLen+1);  
       }  
       else  
       {  
               //  for  drop  lists  GetWindowTextLength  does  not  work  -  assume  
               //    max  of  255  characters  
               ::GetWindowText(hWndCtrl,  value.GetBuffer(255),  255+1);  
       }  
       value.ReleaseBuffer();  
}  
 
//设置ComboBox的文字  
void  SetComboBoxString(HWND  hWndCtrl,  const  CString&  value)  
{  
       //  set  current  selection  based  on  model  string  
       OutputDebugString("SetComboBoxString:"  +  value);  
       if  (::SendMessage(hWndCtrl,  CB_SELECTSTRING,  (WPARAM)-1,  
               (LPARAM)(LPCTSTR)value)  ==  CB_ERR)  
       {  
               //  just  set  the  edit  text  (will  be  ignored  if  DROPDOWNLIST)  
               AfxSetWindowText(hWndCtrl,  value);  
       }  
}  
 
---------------------------------------------------------------  
 
你的Combox是允许编辑的,默认是-1,你输入一个D进去,GetCurSel的时候,当然也是-1,因为你并没有选什么。  
 
CString  strInput;  
int  nSel=m_ComboBox.GetCurSel();  
m_ComboBox.GetLBText(nSel,strInput);  
这样,就可以得到你选中的了,在strInput里面  
---------------------------------------------------------------  
 
if(m_ComboBox.SelectString(m_combo)  ==  CB_ERR)  
{  
         这个String  m_combo在原来的list中没有.  
}  
---------------------------------------------------------------  
 
COMBOBOX没有提供这种“在edit中输入内容,回车后就自动把内容添加到combobox下拉列表中”的功能  
 
这种功能需要自己实现。。。  
 
在pretranslatemessage中,检测到回车,即添加combobox中内容到下来列表中  
 
BOOL  CTest6Dlg::PreTranslateMessage(MSG*  pMsg)    
{  
           CString  str;  
           if(  pMsg->message  ==  WM_KEYDOWN  )  
           {                  
                       switch(  pMsg->wParam  )  
                       {  
                       case  VK_RETURN:  
                                   CEdit  *pEdit  =  (CEdit*)m_combo1.GetWindow(GW_CHILD);  
                                   if(pMsg->hwnd  ==  pEdit->m_hWnd  )  
                                   {              
                                               m_combo1.GetWindowText(str);  
                                               m_combo1.AddString(str);  
                                   }                                      
                                   return  TRUE;  
                       }  
           }  
           return  CDialog::PreTranslateMessage(pMsg);  
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值