如何通过检查CheckedListBox中的多个项来过滤dataGridView?

时间:2016-10-05 19:19:50

标签: c# checkedlistbox

我有这个代码使用checkedListBox过滤我的dataGridView。每次用户检查checkedListBox中的一个框时,dataGridView会自动更新以仅显示与已检查名称相关的数据(例如,通过checked name =" John"过滤)并且它的效果非常好。

private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
    {
                DataTableCollection tables = myDatabaseDataSet.Tables;
                DataView view = new DataView(tables[0]);
                BindingSource source = new BindingSource();
                source.DataSource = view;
                dataGridView1.DataSource = source;
                source.Filter = "myColumnName ='" + checkedListBox1.Text.Replace("'", "''") + "'";
        }

现在的问题是,我怎么能这样做,以便检查checkedListBox中的多个项目,然后通过仅显示已检查的名称来更新dataGridView(例如,在checkedListBox中检查的名称是" John"和& #34;简&#34)

上面的代码给出了以下结果:

Code Above

我想要实现的是这个(模拟图片):

Desired outcome

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

因此,您将拥有一个数据库,该数据库将导致某种形式的"从数据库中选择不同的名称"填充checkedListBox。所以现在你必须添加如下内容:

List<string> names = new List<string>();
for (int i = 0; i < checkedListBox.Items.Count; i++) 
{
    CheckState st = checkedListBox.GetItemCheckState(checkedListBox.Items.IndexOf(i));
    if(st == CheckState.Checked)
    {
        int selected = checkedListBox.SelectedIndex;
        if (selected != -1)
        {
            names.Add(checkedListBox.Items[selected].ToString());
        }
    }
}  

结果将是checkedListBox中被检查的项目列表。然后,您可以使用我之前提供的代码进行过滤。只需用选中的列表字符串替换硬编码名称。

string filterString = "";
int count = 0;
foreach (name in names)
{
    if (count != 0)
    {
        filterString += " OR Responsible = '" + name + "'";
    }
    else
    {
        filterString += "Responsible = '" + name + "'";
    }
    count += 1;
}

现在您有一个字符串可用作创建DataView的过滤器:

DataView view = new DataView(tables[0], filterString, "Responsible Desc", DataViewRowState.CurrentRows);

根据checkBox状态,这应该在表变为DataView而不是之后过滤表。

决赛:

private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
{
    DataTableCollection tables = myDatabaseDataSet.Tables;

    //
    // Place all my code here
    //

    BindingSource source = new BindingSource();
    source.DataSource = view;
    dataGridView1.DataSource = source;
}