C#:如何将 ListView 控件中的数据添加到字典中

发布于 2024-09-28 17:20:04 字数 649 浏览 1 评论 0原文

列表视图就像

alt text

我需要将 Listview 中的数据添加到 <代码>字典<字符串,字符串>。

现在我使用 for 循环 来执行此操作。有没有办法使用LINQ来做到这一点。

最后字典将包含

{"A","1"}
{"B","2"}
{"C","3"}

编辑我的代码:

        Dictionary<String, String> Dic = new Dictionary<string, string>();
        for (int i = 0; i < listView1.Items.Count; i++)
        {
            Dic.Add(listView1.Items[i].Text.ToString(), listView1.Items[i].SubItems[1].Text.ToString());
        }

提前致谢

The list view is like

alt text

i need to add the data from the Listview to a Dictionary<String,String>.

Now i'm using for loop to do this. Is there any way to do this using LINQ.

Finally the Dictionary will contain

{"A","1"}
{"B","2"}
{"C","3"}

EDIT My code :

        Dictionary<String, String> Dic = new Dictionary<string, string>();
        for (int i = 0; i < listView1.Items.Count; i++)
        {
            Dic.Add(listView1.Items[i].Text.ToString(), listView1.Items[i].SubItems[1].Text.ToString());
        }

Thanks in advance

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

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

发布评论

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

评论(1

弥繁 2024-10-05 17:20:04

根据您的样本:

Dictionary<String, String> Dic = listView.Items
    .Cast<ListViewItem>()
    .ToDictionary(x => x.Text, x => x.SubItems[0].Text);

Based on your sample:

Dictionary<String, String> Dic = listView.Items
    .Cast<ListViewItem>()
    .ToDictionary(x => x.Text, x => x.SubItems[0].Text);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文