CListBox::GetCurSel
检索当前选定项的从零开始的索引,如果有,在单选择列表框。
int GetCurSel( ) const;
返回值
当前选定的项的从零开始的索引,如果它是单项选择列表框。 如果项目当前未选择,它是 LB_ERR。
在多重选择列表框,具有焦点的项的索引。
备注
不要调用多重选择的 GetCurSel 列表框。 请改用 CListBox::GetSelItems。
示例
// Select the next item of the currently selected one.
int nIndex = m_myListBox.GetCurSel();
int nCount = m_myListBox.GetCount();
if ((nIndex != LB_ERR) && (nCount > 1))
{
if (++nIndex < nCount)
m_myListBox.SetCurSel(nIndex);
else
m_myListBox.SetCurSel(0);
}
要求
标头: afxwin.h