C# - 如何按键获取/设置 ListViewItem 或 ListViewItem.ListViewSubItem?

发布于 2024-08-24 04:14:10 字数 148 浏览 5 评论 0原文

我有一个包含动态创建的多个项目的列表视图,每个项目都有两个子项目,即数量和代码,在查询数据库后应更新数量,但为了使代码更具可读性,我想通过键访问子项目而不是通过其索引,类似于:

subitem["quantity"]

但我不知道如何通过集合分配键。

I have a listview with several items that are created dynamically, each has two subitems that are quantity and code after a query to the database should update the quantity, but to make the code more readable I would like to access subitems by the key and not by its index, something like:

subitem["quantity"]

but I don't see how to assign the key though collections.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅语花开 2024-08-31 04:14:10

您必须设置 ListViewItemListViewSubItemName 属性才能使用该键。

来自 ListViesSubItem 文档

Name 属性对应于 ListViewItem..::.ListViewSubItemCollection 中 ListViewItem..::.ListViewSubItem 的键。

ListViewItem 也是如此。

You have to set the Name property of the ListViewItem or the ListViewSubItem to use the key.

From the ListViesSubItem documentation:

The Name property corresponds to the key for a ListViewItem..::.ListViewSubItem in a ListViewItem..::.ListViewSubItemCollection.

The same is true for the ListViewItem.

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