使用文本框过滤checkedlistbox

时间:2017-11-24 20:38:31

标签: c# winforms

在我的表单上有一个checkedlistbox,我想用文本框过滤。我试过这个,但没有任何反应。哪部分错了?

List<string> ListCheckboxItems = new List<string>();  //new

    private void textBox1_TextChanged(object sender, EventArgs e)  //new
    {
        var filteredItems =
            ListCheckboxItems.Where(item => ListCheckboxItems.Contains(item));


        checkedListBox1.Items.Clear();

        foreach (object item in filteredItems)
        {
            checkedListBox1.Items.Add(item);
        }
    }

0 个答案:

没有答案