修改行高 用图片填充行高
CImageList m_l;
m_l.Create(1, 30, TRUE | ILC_COLOR32, 1, 0);
m_list.SetImageList(&m_l, LVSIL_SMALL);
m_list.InsertColumn(0, L"Text1", 0, 80);
m_list.InsertColumn(1, L"Text2", 0, 100);
//填充行高
CImageList m_l;
m_l.Create(1, 30, TRUE | ILC_COLOR32, 1, 0);
m_list.SetImageList(&m_l, LVSIL_SMALL);
int nRow = 0;
nRow = m_list.InsertItem(0, L"ddfasf");
bool bRes = m_list.SetItemText(nRow, 1, L"44646");
nRow = m_list.InsertItem(1, L"3333");
//用\r\n来换行
m_list.SetItemText(nRow, 1, L"45664646\r\n64gsgfsgfsgd5564");