listview添加行在网络状态不能添加操作

.Net技术 码拜 9年前 (2015-11-24) 831次浏览
   问一下为什么会报错在网络状态这里不能添加操作。
     this.lvMainMsg.BeginUpdate();
Funcs osandnet = new Funcs();
ListViewItem list = new ListViewItem();
list.Text = “.Net2.0”;
list.SubItems.Add(“已安装”);
this.lvMainMsg.Items.Add(list);
list.Text = “网络状态”;
list.SubItems.Add(osandnet.doGetOtherMessage());
this.lvMainMsg.Items.Add(list);
this.lvMainMsg.EndUpdate();
解决方案:40分
             this.lvMainMsg.BeginUpdate();
Funcs osandnet = new Funcs();
ListViewItem list = new ListViewItem();
list.Text = “.Net2.0”;
list.SubItems.Add(“已安装”);
this.lvMainMsg.Items.Add(list);
list = new ListViewItem();
             list.Text = “网络状态”;
list.SubItems.Add(osandnet.doGetOtherMessage());
this.lvMainMsg.Items.Add(list);
this.lvMainMsg.EndUpdate();

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明listview添加行在网络状态不能添加操作
喜欢 (0)
[1034331897@qq.com]
分享 (0)