码迷,mamicode.com
首页 > 其他好文 > 详细

CListBox控件基本功能

时间:2014-10-09 13:53:23      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   strong   sp   c   on   r   ad   

创建CListBox对象

  CListBox m_ListBox;关联控件 ,同时注意行数从  0  开始计算

1、向控件中添加内容

  int AddString(LPCTSTR lpszItem );

  如:m_ListBox.AddString(_T("123"));

2、指定插入位置

  int InsertString(int nIndex, LPCTSTR lpszITem);

  如:m_ListBox.InsertString(0, _T("12314"));

3、删除某行

  int DeleteString(UINT nIndex);

  如:m_ListBox.DeleteString(1);

4、获取控件中行数

  int iCount = m_ListBox.GetCount();

5、从第n行开始查找字符串str, 返回字符串所在行

  int iRow = FindString(n, str);

CListBox控件基本功能

标签:style   color   ar   strong   sp   c   on   r   ad   

原文地址:http://www.cnblogs.com/fenglangxiaotian/p/4012322.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!