VC如何把List中的内容全部清空
发布网友
发布时间:2022-04-22 06:53
我来回答
共4个回答
热心网友
时间:2022-06-17 00:04
CListBox::ResetContent
void ResetContent( );
Remarks
Removes all items from a list box.
Example
// The pointer to my list box.
extern CListBox* pmyListBox;
// Delete all the items from the list box.
pmyListBox->ResetContent();
ASSERT(pmyListBox->GetCount() == 0);
热心网友
时间:2022-06-17 00:04
用DeleteAllItems,具体用法是List.DeleteAllItems().
热心网友
时间:2022-06-17 00:05
ListControl.DeleteAllItems()
热心网友
时间:2022-06-17 00:05
LIST.CLEAR();