在退格键上不更改过滤器 - radgridview - C#

时间:2018-01-24 12:00:55

标签: c# textbox radgridview backspace textchanged

在我的程序中,我有一个文本框,在文本更改时,过滤器应用于我的RadGrid。但是,在退格时,不会重新应用过滤器。

private void txt_search_TextChanged_1(object sender, EventArgs e)
    {
        try
        {
            CompositeFilterDescriptor searchFilter = new CompositeFilterDescriptor();
            searchFilter.FilterDescriptors.Add(new FilterDescriptor("product", FilterOperator.Contains, txt_search.Text));
            this.radGridView1.EnableFiltering = true;
            this.radGridView1.MasterTemplate.Templates[0].EnableFiltering = true;
            this.radGridView1.MasterTemplate.Templates[0].ShowFilteringRow = false;
            this.radGridView1.MasterTemplate.ShowFilteringRow = false;
            this.radGridView1.MasterTemplate.Templates[0].ShowTotals = true;
            this.radGridView1.MasterTemplate.Templates[0].ShowFilterCellOperatorText = false;

            if (txt_search.Text != "")
            {
                this.radGridView1.MasterTemplate.Templates[0].FilterDescriptors.Add(searchFilter);
            }

            foreach (GridViewRowInfo row in radGridView1.MasterTemplate.Rows)
            {
                if (row.ChildRows.Count == 0)
                {
                    row.IsVisible = false;
                }
                else
                {
                    row.IsVisible = true;
                }
            }
        }
        catch (Exception ex)
        {

            MessageBox.Show("Something went wrong searching the grid. Please try again and contact I.T. if this problem persists.", "Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
    }
}

是否需要生成另一个应用于退格的功能?

此代码取自我用VB.net编写并转换的另一个程序。过滤器在VB版本中工作,并在删除文本等时重新应用。

任何帮助表示感谢。

0 个答案:

没有答案