winform 实现客户要求的在 DataGridView 自定义选择显示的列

2018-09-21 21:13:40 +08:00
 guangtoujiabaoji

通过一个 CheckedListBox 实现,在 CheckedListBox 选中想要显示的列即可,代码如下:

private void Form1_Load(object sender, EventArgs e)
{
    SBKHSBYQ(dataGridView1, checkedListBox1);
}

public static void SBKHSBYQ(DataGridView D, CheckedListBox C)
{
    Dictionary<string, string> temps = new Dictionary<string, string>();
    foreach (DataGridViewColumn item in D.Columns)
    {
        C.Items.Add(item.HeaderText);
        temps[item.HeaderText] = item.Name;              
        C.SetItemChecked(item.Index, item.Visible);                             
    }
    C.ItemCheck += (o, e) =>
    {
        if(e.NewValue==CheckState.Unchecked)
            D.Columns[temps[(o as CheckedListBox).SelectedItem.ToString()]].Visible=false;
        else if(e.NewValue==CheckState.Checked)
            D.Columns[temps[(o as CheckedListBox).SelectedItem.ToString()]].Visible = true;
    };
}
932 次点击
所在节点    问与答
0 条回复

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/491664

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX