clistctrl 怎样单击行并且获得被点行的内容

2024-12-27 00:22:09
推荐回答(1个)
回答1:

POSITION pos = m_clistctrl .GetFirstSelectedItemPosition();
if(pos!=NULL)
{
int Item = m_clistctrl .GetNextSelectedItem(pos);
CString listval= m_clistctrl .GetItemText(Item,1);
}
注意GetItemText()的用法,获取第几列,在后面输入数字是几。