ListView统计被选中/不被选中的记录数
2015-04-22 10:19:46 访问(1506) 赞(0) 踩(0)
/// <summary>
/// ListView统计被选中/不被选中的记录数
/// </summary>
/// <param name="lv"></param>
/// <param name="bFlag"></param>
/// <returns></returns>
public int ListViewCountChecked(ListView lv, bool bFlag)
{
int theResult = 0;
foreach (ListViewItem item in lv.Items)
{
if (item.Checked==bFlag)
++theResult;
}
return theResult;
}
标签:
ListView统计被选中/不被选中的记录数 


上一条:
下一条:
相关评论
发表评论