CComboBox And CListBox ResetContent

来源:互联网 发布:限制玩手机的软件 编辑:程序博客网 时间:2024/06/16 08:20
// Delete all the items from the combo box.m_pComboBox->ResetContent();ASSERT(m_pComboBox->GetCount() == 0);

// Delete all the items from the list box.m_myListBox.ResetContent();ASSERT(m_myListBox.GetCount() == 0);