关于treectrl空间添加节点的效率问题
各位好,我现在有这么一个需求。
CString strItem; HTREEITEM hRoot= pThis->m_tree.InsertItem(L"Root",NULL,NULL); for(int i=0;i<10000;i++) { strItem.Format(L"%d",i); pThis->m_tree.InsertItem(strItem,hRoot,NULL); }