C# 从详细信息视图中的列表视图中的第一个项目中抓取文本

发布于 2024-11-04 23:16:22 字数 317 浏览 0 评论 0原文

我有一个动态填充的列表视图(在详细信息视图中)。我想从列表视图中的第一个项目中获取文本。 此代码不起作用

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咋地 2024-11-11 23:16:22

尝试使用

lstSalesppl.Items[0].Text

而不是

lstSalesppl.SelectedItems[0].Text;

lstSalespl.SelectedItems 可能不会绑定到 Selected 属性


ListView.SelectedItems 属性

如果在创建 ListView 句柄之前访问该属性,则 SelectedItems 属性将不包含任何项目,这通常发生在最初加载 ListView 以在表单中显示时。您可以使用 IsHandleCreated 属性检查句柄是否已创建。当 MultiSelect 属性设置为 true 时,此属性返回一个集合,其中包含在 ListView 中选择的项目。对于单选 ListView,此属性返回一个包含 ListView 中唯一选定项的集合。有关可以对集合中的项目执行的任务的详细信息,请参阅 ListView.SelectedListViewItemCollection。

try using

lstSalesppl.Items[0].Text

rather than

lstSalesppl.SelectedItems[0].Text;

lstSalesppl.SelectedItems may not be bound to the Selected attribute


ListView.SelectedItems Property

The SelectedItems property will not contain any items if the property is accessed before the ListView handle is created, which typically occurs when ListView is initially loaded for display in the form. You can check to see if the handle is created with the IsHandleCreated property. When the MultiSelect property is set to true, this property returns a collection containing the items that are selected in the ListView. For a single-selection ListView, this property returns a collection containing the only selected item in the ListView. For more information on the tasks that can be performed with the items in the collection, see ListView.SelectedListViewItemCollection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文