1. 对控件中的某一项,选中它,并高亮(默认的形式是背景为蓝色) CListBox控件的设置: Listbox功能简单,设置也简单,只需一句: m_lstbxIncludedStations.SetCurSel(0); CListCtrl控件的设置: 目的:在对话启动起来后,希望CListctrl里有一项是被选中的,且该项高亮(蓝色)显示 方法: 在OnIntiDialog里添加代码 m_lvAll...
1、初始化:对话框属性中Selection项,选择Multiple m_listbox.AddString("Colomn1"); m_listbox.AddString("Colomn2"); m_listbox.AddString("Colomn3"); m_listbox.AddString("Colomn4"); m_listbox.InsertString(1,"Insert 1"); m_listbox.InsertString(2,"Insert 2"); // m_hIcon = AfxGetApp()-...
获取当前选择行:// 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...
a) 给列表框添加一个字符串 CListBox::AddString b) 选中列表列表框某一项,自动触发事件:LBN_SELCHANGE 1)获取当前选中项 CListBox::GetCurSel 2)获取指定位置的内容 CListBox::GetText c) 删除指定位置的字符串 CListBox::DeleteString d) 在指定位置插入字符串 CListBox::InsertString 1. 2. 3. 4. 5. 6. 7...
CListBox::SelectString 搜索并选中单选的字符串列表框。 CListBox::SelItemRange 选择或取消选择字符串的大小在多个选择的列表框。 CListBox::SetAnchorIndex 设置在多个选定内容的定位点列表框启动一个扩展选择。 CListBox::SetCaretIndex 设置焦点矩形对项目在多重选择的指定索引列表框。 CListBox::SetColumnWidth 设置列...
VC CListBox用法总结 CListBox添加项,得到选中的单项或多项的值。 OnInitDialog();函数里初始化 //TODO: 在此添加额外的初始化代码 CListBox*pCtrl=(CListBox*)GetDlgItem(IDC_LIST1); pCtrl->AddString(_T("A")); pCtrl->AddString(_T("B"));
int GetCursel() const;这个函数的主要作用是返回当前选中项目的索引,索引从0开始。当列表框中有一个或多个项目被选中时,这个值会反映出选中项的位置。然而,值得注意的是,如果列表框是支持多选的(即允许用户同时选择多个项目),并且当前没有项目被选定,函数将返回LB_ERR,表示没有有效的选择。在...
CListBox添加项,得到选中的单项或多项的值 CListBox添加项,得到选中的单项或多项的值。 OnInitDialog();函数里初始化 // TODO: 在此添加额外的初始化代码 CListBox *pCtrl = (CListBox *)GetDlgItem(IDC_LIST1); pCtrl->AddString(_T("A"));
常用的操作还有:CListBox::DeleteString(int nIndex),删除指定下标的选择项,删除后其后的选择项向前移动一位;CListBox::GetCursel(),返回当前选中的选择项的下标值。 例Exam6_4通过一个简单的ListBox_Single对话框来介绍如何使用列表框。在对话框中包括一个列表框、一个编辑框。ListBox_Single对话框的运行结果如下:...
备注该项可能已选中,也可能未选中。示例请参阅 CListBox::SetCaretIndex 的示例。CListBox::GetCount检索列表框中的项数。复制 int GetCount() const; 返回值列表框中的项数,如果发生错误,则为 LB_ERR。备注返回的计数比最后一项的索引值大 1(索引从零开始)。