C++中,CComboBox类,MFC组合框问题?

2024-12-26 13:02:46
推荐回答(2个)
回答1:

方法1:
while( box.DeleteString(0) );

方法2:
char buff[256];
box.GetWindowText(buff);
box.ResetContent();
box.SetWindowText(buff);

回答2:

根据下拉数据的个数,从后面一个一个的删除,只留下第一个。
m_ListBox.DeleteString(i);