如何从ListView c#中删除列

本文关键字:删除列 ListView | 更新日期: 2023-09-27 18:22:05

我是ListView的新手,遇到了一个小问题:

我在WinForm中有一个ListView,我用许多列(大约15列)逐行填充它,稍后我可以选择将ListView保存到CSV。我想要的是一种让用户从ListView中删除不需要的列的方法。

我在第一个创建列的功能

    private void checkAddListBoxColumns(DomainLayer.ScriptLogic.session sessionToAdd)
    {
        if (IsResultLogListViewFirstRun)
        {
            IsResultLogListViewFirstRun = false;
            this.Invoke((MethodInvoker)delegate
            {
                ResultsLogTab_ListView.Columns.Clear();
            });
            foreach (var item in sessionToAdd.comments.Keys)
            {
                this.Invoke((MethodInvoker)delegate
                {
                    ResultsLogTab_ListView.Columns.Add(item);
                });
            }
            McsTableRow mcsTR = new McsTableRow();
            Type t = mcsTR.GetType();
            foreach (/*PropertyInfo*/FieldInfo info in t.GetFields())
            {
                this.Invoke((MethodInvoker)delegate
                {
                    ResultsLogTab_ListView.Columns.Add(info.Name+" 1");
                });
            }
            foreach (FieldInfo info in t.GetFields())
            {
                this.Invoke((MethodInvoker)delegate
                {
                    ResultsLogTab_ListView.Columns.Add(info.Name+" 2");
                });
            }
            this.Invoke((MethodInvoker)delegate
            {
                ResultsLogTab_ListView.Columns.Add("Effective PHY Rate");
            });
            //...more of the same
        }
        else
        {
            //?
        }
    }

稍后我添加类似的行

            private OnSessionToAdd()
            {
            foreach (string key in sessionToAdd.comments.Keys)
            {
                item.SubItems.Add(sessionToAdd.comments[key]);
            }
            Type t = sessionToAdd.CurrentMCSCheck.firstMcsRow.GetType();
            foreach (FieldInfo info in t.GetFields())
            {
                string x = info.GetValue(sessionToAdd.CurrentMCSCheck.firstMcsRow) as string;
                item.SubItems.Add(x);
            }
            t = sessionToAdd.CurrentMCSCheck.secondMcsRow.GetType();
            foreach (FieldInfo info in t.GetFields())
            {
                string x = info.GetValue(sessionToAdd.CurrentMCSCheck.secondMcsRow) as string;
                item.SubItems.Add(x);
            }
            item.SubItems.Add(sessionToAdd.CurrentMCSCheck.EffectivePHYRate);
            this.Invoke((MethodInvoker)delegate
            {
             ResultsLogTab_ListView.Items.Add(item);
            });
            }

我需要的是一种获取所有列名称的方法,而不是按名称或某种IndexOf(name)删除列

请给我指一下的正确方向

编辑

只是为了清除我不隐藏列(设置宽度=0)我想删除它们为了帮助您理解我的观点,我添加了保存ListView的方法我保存到CSV:的方式

public StringBuilder ListViewToCSV(ListView listView, string filePath, bool includeHidden)
{
    //make header string
    StringBuilder result = new StringBuilder();
    WriteCSVRow(result, listView.Columns.Count, i => includeHidden || listView.Columns[i].Width > 0, i => listView.Columns[i].Text);
    //export data rows
    foreach (ListViewItem listItem in listView.Items)
        WriteCSVRow(result, listView.Columns.Count, i => includeHidden || listView.Columns[i].Width > 0, i => listItem.SubItems[i].Text);
    return result;
}
private static void WriteCSVRow(StringBuilder result, int itemsCount, Func<int, bool> isColumnNeeded, Func<int, string> columnValue)
{
    bool isFirstTime = true;
    for (int i = 0; i < itemsCount; i++)
    {
        if (!isColumnNeeded(i))
            continue;
        if (!isFirstTime)
            result.Append(",");
        isFirstTime = false;
        result.Append(String.Format("'"{0}'"", columnValue(i)));
    }
    result.AppendLine();
}

而不仅仅是保存StringBuilder

如何从ListView c#中删除列

您可以按名称引用列。

var columnToRemove = ResultsLogTab_ListView.Columns["Name Of Column"];

然后将其移除

ResultsLogTab_ListView.Columns.Remove(columnToRemove);

这一切都记录在MSDN上,MSDN是一个很好的资源。

更新

关于从CSV保存/加载,假设您有一个列名称的List<string>(从所述CSV文件获得)要保留,然后可以使用LINQ查找不匹配的列,然后迭代结果以删除它们。

using System.Linq;
...
var columnNames = new List<string> { "one", "two", "three" };
var columnsToDelete = ResultsLogTab_ListView.Columns.Where(c => !columnNames.Contains(c.Name));
foreach(var column in columnsToDelete)
{
     ResultsLogTab_ListView.Columns.Remove(column);
}