Dotnet: - 如何使自动填充文本框搜索不区分大小写?

时间:2011-03-17 07:04:05

标签: c# winforms desktop-application

我可以实现自动填充文本框搜索,但它区分大小写。我想让它变得麻木不仁。我已经放了一个或者条件,但它只检查第一个输入的字母。我希望搜索完全不区分大小写。

以下是我的代码

public partial class Form1 : Form
{
    AutoCompleteStringCollection acsc;
    public Form1()
    {
        InitializeComponent();
         acsc = new AutoCompleteStringCollection(); 
        textBox1.AutoCompleteCustomSource = acsc; 
        textBox1.AutoCompleteMode = AutoCompleteMode.None; 
        textBox1.AutoCompleteSource = AutoCompleteSource.CustomSource;
        acsc.Add("Sim Vodafone");
        acsc.Add("sim vodafone");
        acsc.Add("sIm");
        acsc.Add("siM"); 
    }

    private void textBox1_TextChanged(object sender, EventArgs e)
    {
        string d = null;

        listBox1.Items.Clear(); 
        if (textBox1.Text.Length == 0) 
        { 
            hideResults(); 
            return; 
        } 
        foreach (String s in textBox1.AutoCompleteCustomSource) 
        {
            d = textBox1.Text.ToUpper();
            if (s.Contains(d) || s.Contains(textBox1.Text)) 
            { 
                Console.WriteLine("Found text in: " + s); 
                listBox1.Items.Add(s); 
                listBox1.Visible = true; 
            } 
        } 
    }

    private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
        textBox1.Text = listBox1.Items[listBox1.SelectedIndex].ToString(); 
        hideResults(); 
    }

            void listBox1_LostFocus(object sender, System.EventArgs e) 
    { 
        hideResults(); 
    }  

    void hideResults() 
    { 
        listBox1.Visible = false; 
    }
}

}

2 个答案:

答案 0 :(得分:2)

我认为唯一的事情就是将autoCompleteSource中的字符串转换为upper。改变

d = textBox1.Text.ToUpper();
if (s.Contains(d) || s.Contains(textBox1.Text)) 
{ 
     Console.WriteLine("Found text in: " + s); 
     listBox1.Items.Add(s); 
     listBox1.Visible = true; 
}

d = textBox1.Text.ToUpper();
string upperS = s.ToUpper();
if (upperS.Contains(d)) 
{ 
     Console.WriteLine("Found text in: " + s); 
     listBox1.Items.Add(s); 
     listBox1.Visible = true; 
}

它应该有效。虽然我确信,自动完成应该有一个更简单的解决方案,而不是创建自己的列表框。

答案 1 :(得分:0)

你能试试吗?

  d = textBox1.Text;
  if (s.Contains(d.ToUpper()) || s.Contains(d.ToLower()) || s.Contains(textBox1.Text.ToUpper()) || Contains(textBox1.Text.ToLower()))