我的应用程序包含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" });