gpt4 book ai didi

c# - 如何在 ListView 中查找项目并更新同一行中的另一列?

转载 作者:太空宇宙 更新时间:2023-11-03 20:21:35 24 4
gpt4 key购买 nike

我的应用程序读取一个文本文件并填充一个 ListView。这很简单,就像这样:

Date     | Invoice   | Status  
20121015 | 123123 |
20121015 | 123124 |
20121015 | 123456 |
20121015 | 124123 |

然后我需要读取第二个文本文件,它可能包含也可能不包含在 ListView 中找到的发票以及状态。如果有匹配的发票,则需要将来自第二个文本文件的状态添加到 ListView,因此它看起来像这样:

Date     | Invoice   | Status  
20121015 | 123123 |
20121015 | 123124 |
20121015 | 123456 | Paid
20121015 | 124123 |

最初我有一个只有发票号码的列表框,并且正在做

int index = ListBox1.FindString(<whatever>);

获取包含发票的行的索引,然后删除该项目 (RemoveAt(Index)) 并插入一个新项目,如

ListBox.Items.Insert(index, invoice + " PAID")

如何使用 ListView 执行类似的操作?我喜欢使用列而不是只有 1 行文本的想法。我应该使用 ListView 以外的东西来完成这个吗?

平均而言,我正在阅读的每个文本文件都有 <1000 行需要添加。

最佳答案

您可以枚举 ListView 的 Items 集合。是的, ListView 是实现此目的的理想控件。

foreach (ListViewItem item in listView1.Items)
{
var invoice = item.SubItems[1];
if (invoice.Text == "whatever")
{
item.SubItems[2] = new ListViewItem.ListViewSubItem() { Text = "Paid" };
break;
}
}

关于c# - 如何在 ListView 中查找项目并更新同一行中的另一列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13183027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com