5

我怎样才能让我的程序的用户输入一个值并让它自动完成,但是,我还有什么可以阻止他们输入新数据,因为这会导致数据无法找到(除非你可以直接访问数据库)。

有谁知道如何做到这一点?

不使用下拉式组合框的原因是因为通过键入数据输入数据然后拒绝不属于列表选项的字符是因为它对用户来说更容易。

如果您使用过 Quickbook 的 Timer,那就是我想要的组合框样式。

4

4 回答 4

7

感谢 BFree 的帮助,但这是我一直在寻找的解决方案。ComboBox 使用 DataSet 作为源,因此它不是自定义源。

    protected virtual void comboBoxAutoComplete_KeyPress(object sender, KeyPressEventArgs e) {
        if (Char.IsControl(e.KeyChar)) {
            //let it go if it's a control char such as escape, tab, backspace, enter...
            return;
        }
        ComboBox box = ((ComboBox)sender);

        //must get the selected portion only. Otherwise, we append the e.KeyChar to the AutoSuggested value (i.e. we'd never get anywhere)
        string nonSelected = box.Text.Substring(0, box.Text.Length - box.SelectionLength);

        string text = nonSelected + e.KeyChar;
        bool matched = false;
        for (int i = 0; i < box.Items.Count; i++) {
            if (((DataRowView)box.Items[i])[box.DisplayMember].ToString().StartsWith(text, true, null)) {
                matched = true;
                break;
            }
        }

        //toggle the matched bool because if we set handled to true, it precent's input, and we don't want to prevent
        //input if it's matched.
        e.Handled = !matched;
    }
于 2009-01-30T17:57:08.863 回答
2

这是我的解决方案,我遇到了同样的问题,并使用文本框而不是组合框修改您的代码以适合我的解决方案,也为了避免在比较第一个字符串后出现否定响应,必须在再次与自动完成列表比较之前取消选择文本,在这个代码是一个 AutoCompleteStringCollection shiper,我希望这个解决方案会有所帮助

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
  String text = ((TextBox)sender).Text.Substring(
    0, ((TextBox)sender).SelectionStart) + e.KeyChar;
  foreach(String s in this.shippers)
    if (s.ToUpperInvariant().StartsWith(text.ToUpperInvariant()) ||
      e.KeyChar == (char)Keys.Back || e.KeyChar == (char)Keys.Delete)
        return;                    

  e.Handled = true;
}
于 2012-10-30T17:25:52.310 回答
1

好的,这就是我想出的。黑客?也许吧,但是,嘿,它有效。我只是用一周中的几天填充组合框(嘿,我需要一些东西),然后处理按键事件。每次按键时,我都会检查该单词是否与 AutoCompleteSourceCollection 中任何单词的开头相匹配。如果没有,我将 e.Handled 设置为 true,因此不会注册密钥。

    public Form5()
    {
        InitializeComponent();

        foreach (var e in Enum.GetValues(typeof(DayOfWeek)))
        {
            this.comboBox1.AutoCompleteCustomSource.Add(e.ToString());
        }

        this.comboBox1.KeyPress += new KeyPressEventHandler(comboBox1_KeyPress);

    }

    private void comboBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        string text = this.comboBox1.Text + e.KeyChar;
        e.Handled =  !(this.comboBox1.AutoCompleteCustomSource.Cast<string>()
           .Any(s => s.ToUpperInvariant().StartsWith(text.ToUpperInvariant()))) && !char.IsControl(e.KeyChar);
    }

编辑:如果您使用的是 .Net 3.5,则需要参考 System.Linq。如果您使用的是 .NET 2.0,请改用它:

    private void comboBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        string text = this.comboBox1.Text + e.KeyChar;
       foreach (string s in this.comboBox1.AutoCompleteCustomSource)
        {
            if (s.ToUpperInvariant().StartsWith(text.ToUpperInvariant()))
            {
                return;
            }
        }
        e.Handled = true;

    }
于 2009-01-30T15:39:10.733 回答
1

我知道我迟到了大约六年,但也许这可以帮助某人。

    private void comboBox1_Leave(object sender, EventArgs e)
    {
        if (comboBox1.Items.Contains(comboBox1.Text)) { MessageBox.Show("YE"); }
        else { MessageBox.Show("NE"); }

        OR

        if (comboBox1.FindStringExact(comboBox1.Text) > -1) { MessageBox.Show("YE"); }
        else { MessageBox.Show("NE"); }
    }
于 2015-05-22T08:33:42.627 回答