当前位置: 代码迷 >> Windows Mobile >> listview items能不能实现复选? (急)解决思路
  详细解决方案

listview items能不能实现复选? (急)解决思路

热度:179   发布时间:2016-04-25 07:59:38.0
listview items能不能实现复选? (急)
请问listview中的各个item能否实现复选?
比如每个item前面有个复选框。
不知道怎么实现?
谢谢。

------解决方案--------------------
自己遍历list 比较状态

int item_count = m_ListView.GetItemCount();
int select_count = m_ListView.GetSelectedCount();

if(select_count > 0)
{
for(int index = 0; index < item_count; index++)
{
if(m_ListView.GetCheckState(index))
{
  相关解决方案