gpt4 book ai didi

c# - 在 ListView 中更改列

转载 作者:太空狗 更新时间:2023-10-29 21:34:45 25 4
gpt4 key购买 nike

我的应用程序包含 ListView,其中包含我正在处理的文件,并且有 3 列:文件名、长度和状态。在我的 for 循环中,我正在一个接一个地处理文件,在这种情况下,我希望将状态列从 wait(开始时的值)更改为 in process。是否可以更改一列?

lvFiles 是我的 ListView

for (int i = 0; i < lvFiles.Items.Count; i++)
{
//here i am do things with my file
}

这里我将文件添加到我的 ListView 中:

ListViewItem item = new ListViewItem(new string[] { new FileInfo(filePath).Name, duration, "Waiting" });

最佳答案

使用SubItems ListViewItem 的属性:

foreach(ListViewItem item in lvFiles.Items)
item.SubItems[2].Text = "Waiting";

关于c# - 在 ListView 中更改列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14268417/

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