MFC中CListCtrl类的GetItemText()方法获取数据

首先需要调用SetItemText(_In_ int nItem, _In_ int nSubItem, _In_z_ LPCTSTR lpszText)方法,将索引值与相关内容关联起来。

m_ListCtrl.SetItemText(iCount, 0, (LPCTSTR)m_TopSrcFileFullName);

其中iCount是我插入的图片索引,m_TopSrcFileFullName是我需要关联的值,此处为图片的路径。

 

然后在需要用到的地方调用GetItemText()方法,

CString strWarn;
strWarn = m_ListCtrl.GetItemText(nItem, 0);

nItem就是我传入的索引值,函数返回值就是我之前所关联的内容。

你可能感兴趣的:(C++)