名称描述 CListBox::CListBox 构造CListBox 对象。公共方法展开表 名称描述 CListBox::AddString 将字符串添加到列表框。 CListBox::CharToItem 进行重写,以便为没有字符串的所有者描述列表框提供自定义 WM_CHAR 处理。 CListBox::CompareItem 由框架调用,以确定新项在已排序所有者描述列表框中的位置。 CListBox::Cre...
CListBox::AddString CListBox::CharToItem CListBox::CListBox CListBox::CompareItem CListBox::Create CListBox::DeleteItem CListBox::DeleteString CListBox::Dir CListBox::DrawItem CListBox::FindString CListBox::FindStringExact CListBox::GetAnchorIndex CListBox::GetCaretIndex CListBox::GetCount CListBox::GetCurSel...
CListBox::GetCurSel//获取当前选中行的行号 int GetCurSel( ) const; CListBox::SetCurSel(n)//设置第n行内容为显示的内容 int SetCurSel( int nSelect ); int CListBox::SetItemHeight( intnIndex, UINT cyItemHeight );//设置一个项的高度,注意:列表框具有 //LBS_OWNERDRAWVARIABLE风格才可以单独设置一个项...
b) 选中列表列表框某一项,自动触发事件:LBN_SELCHANGE1)获取当前选中项CListBox::GetCurSel2)获取指定位置的内容CListBox::GetText c) 删除指定位置的字符串CListBox::DeleteString d) 在指定位置插入字符串CListBox::InsertString /***新增***/voidCMFCApplication1LiBiaoDlg::OnBnClickedButton1(){UpdateData(TRUE)...
1、VC+MFC编程技术-第五章 列表框控件(CListBox)和列表控件(CListCt.列表框主要用于输入,它允许用户从所列出的表项中进行单项或多项选择,被选择的项呈高亮度显示列表框具有边框,并且一般带有一个垂直滚动条列表框分单选列表框和多重选择列表框两种单选列表框一次只能选择一个列表项,而多重选择列表框可以进行多重...
构造函数可以是从CListBox派生的类的一个单步进程。为派生类写构造函数并从中调用Create。如果要处理由列表框发送到其父亲(通常为从CDialog派生的类)的Windows通知消息,为每个消息添加消息映射入口和消息处理成员函数到父类。 每个消息映射入口有以下形式:
1、列表框控件简单应用重复性的过程我就不详细讲明了,只给出类里面函数的解释。int CListBox:AddString( LPCTSTR lpszItem ;/添加一个项,lpszItem是项文本内容int CListBox:InsertString( int nIndex, LPCTSTR lpszItem ;/同上,只不过这个可以指定项位置(索引),由参数nIndex指定int CListBox:GetCurSel( const;/获取...
CListBox类常见函数用法 1.构造函数 CListBox( ); 例如: CListBox m_ListBox; CListBox *pListBox; 2.生成函数 BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID ); 例如: CRect rect(0,0,100,100); m_ListBox.Create(LBS_STANDARD,rect,NULL,1000);...
int CListBox::GetText( int nIndex,CString &rString ) const;//根据索引获得项文本 int CListBox::GetCount( ) const;//获取项数量 void CListBox::ResetContent( );//删除列表框所有的项 int CListBox::DeleteString( UINT nIndex );//根据项索引从列表框删除一个项 ...