CListCtrl删除所有列


CListCtrl删除所有列:     int int_itemcount =m_CListCtrl1. GetHeaderCtrl()->GetItemCount ();     for(int nIndex=0; nIndex<int_itemcount ;++nIndex)       {          m_CListCtrl1.DeleteColumn (0);     }

相关