c# listview获取选中行内容-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 279354
  • 博文数量: 93
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 830
  • 用 户 组: 普通用户
  • 注册时间: 2016-02-25 10:44
个人简介

一杯茶,一台电脑

文章分类

(93)

  • (2)
  • (2)
  • (4)
  • (12)
  • (3)
  • (2)
  • (3)
  • (2)
  • (1)
  • (0)
  • (0)
  • (12)
  • (22)
  • (9)
  • (0)
  • (18)
  • (1)
文章存档

(4)

(57)

(32)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: c#/.net

2017-01-22 13:28:51


点击(此处)折叠或打开

  1. 将listview选中行的第一列的值输出
  2. private void lvaccountlist_selectedindexchanged(object sender, eventargs e)
  3. {
  4. //在此处设断点,发现点击不同的item后,此事件居然执行了2次 //第一次是取消当前item选中状态,导致整个listview的selectedindices变为0
  5. //第二次才将新选中的item设置为选中状态,selectedindices变为1
  6. //如果不加listview.selectedindices.count>0判断,将导致获取listview.items[]索引超界的异常

  7. if (listview.selectedindices != null && listview.selectedindices.count>0)
  8. {
  9. listview.selectedindexcollection c = listview.selectedindices;
  10. lbltitle.text = listview.items[c[0]].text;
  11. }
  12. }

阅读(5309) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图