首页 > 其他 > 详细

CListBox快速清空

时间:2020-04-29 23:45:35      阅读:112      评论:0      收藏:0      [点我收藏+]

https://blog.csdn.net/kulala082/article/details/78687822

方法一:

while(pmyListBox->GetCount()) 
  pmyListBox->DeleteString( 0 );

 

方法二:

int nListCount=pMyListBox->GetCount(); 
for (int i=0;i < nListCount;i++) 
{ 
  pmyListBox->DeleteString(0);//循环次数等于总个数,每次都删除第一个 
}

 

方法三:

CListBox *box=(CListBox *)GetDlgItem(IDC_LIST_INFO);
box->ResetContent();

 

CListBox快速清空

原文:https://www.cnblogs.com/sinceret/p/12805784.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!