双击CListBox中的选项,怎么获取选中项的信息

 我来答
百度网友ded4135
高粉答主

2016-12-23 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.7万
采纳率:87%
帮助的人:1.2亿
展开全部
获取当前选择行:
// The pointer to my list box.
extern CListBox* pmyListBox;

// Select the next item of the currently selected one.
int nIndex = pmyListBox->GetCurSel();
int nCount = pmyListBox->GetCount();
if ((nIndex != LB_ERR) && (nCount $amp;>amp;$nbsp;1))
{
if (++nIndex $amp; pmyListBox->SetCurSel(nIndex);
else
pmyListBox->SetCurSel(0);
}
获取某行text:
// The pointer to my list box.
extern CListBox* pmyListBox;

// Dump all of the items in the list box.
#ifdef _DEBUG
CString str, str2;
int n;
for (int i=0;i $amp; {
n = pmyListBox->GetTextLen( i );
pmyListBox->GetText( i, str.GetBuffer(n) );
str.ReleaseBuffer();

str2.Format(_T("item %d: %s\r\n"), i, str.GetBuffer(0));
afxDump $amp; }
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式