C# 从详细信息视图中的列表视图中的第一个项目中抓取文本
我有一个动态填充的列表视图(在详细信息视图中)。我想从列表视图中的第一个项目中获取文本。 此代码不起作用
lstSalesppl.Items[0].Selected = true;
string teamLeader = lstSalesppl.SelectedItems[0].Text;
我在第二行收到错误: Invalid argument=Value of '0' is not valid for 'index' 但是当双击列表视图项目时,相同的代码
可以在另一种方法中工作有人能告诉我什么吗我做错了吗?
谢谢
I have a listview (in Details view) that is filled dynamically. I want to grab the text from the the first item in the listview.
This code doesn't work
lstSalesppl.Items[0].Selected = true;
string teamLeader = lstSalesppl.SelectedItems[0].Text;
I get an error on the second line: Invalid argument=Value of '0' is not valid for 'index' however the same code works in another method when the listview item is double clicked
Can anyone tell me what I'm doing wrong?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
而不是
lstSalespl.SelectedItems
可能不会绑定到Selected
属性ListView.SelectedItems 属性
try using
rather than
lstSalesppl.SelectedItems
may not be bound to theSelected
attributeListView.SelectedItems Property