11

我在 C# 中制作一个自动建议/完整文本框,我点击下面的链接,但文本框没有显示建议

如何在 Windows 窗体中创建自动提示文本框?

//-------- Get all distinct description -----------------------------
OleDbCommand command = new OleDbCommand(Queries.qry16, Connection);
OleDbDataReader reader = command.ExecuteReader();

//--------- Storing ------------------------------------
while (reader.Read())
{
    namesCollection.Add(reader.GetValue(0).ToString());
}

//----------- Close after use ---------------------------------------
reader.Close();

//----------- Set the auto suggestion in description box ------------
descriptionBox.AutoCompleteMode = AutoCompleteMode.Suggest;
descriptionBox.AutoCompleteSource = AutoCompleteSource.CustomSource;
descriptionBox.AutoCompleteCustomSource = namesCollection;

这是我的代码,它在winform的加载功能中。并且 nameCollection 初始化在构造函数中......请帮助使其正常工作。

我正在编辑我的帖子而不是创建新的...我已经在单行文本框中尝试了我自己的代码并且它有效。现在我想在多行中使用相同的内容...对于研究,我在 Google 上搜索了 2 天以上,尝试了不同的代码(一个具有智能意义的代码),但它没有作为文本框中提供的自动建议。谁能给我建议将整个过程编码为多行..谢谢。

4

5 回答 5

13

AutoCompleteSource 不适用于多行 TextBox 控件。

这意味着你需要从头开始:

我会制作一个 ListBox 来显示自动完成的内容:

var listBox = new ListBox();
Controls.Add(listBox);

你需要在你的文本框上进行事件处理,但这有点粗糙,所以我会重写它以在某个时候停止 keyupevent:

private void textBox_KeyUp(object sender, KeyEventArgs e)
{
    var x = textBox.Left;
    var y = textBox.Top + textBox.Height;
    var width = textBox.Width + 20;
    const int height = 40;

    listBox.SetBounds(x, y, width, height );
    listBox.KeyDown += listBox_SelectedIndexChanged;

    List<string> localList = list.Where(z => z.StartsWith(textBox.Text)).ToList();
    if(localList.Any() && !string.IsNullOrEmpty(textBox.Text))
    {
        listBox.DataSource = localList;
        listBox.Show();
        listBox.Focus();

    }
}

现在您只需要一个处理程序来设置文本框中的文本:

 void listBox_SelectedIndexChanged(object sender, KeyEventArgs e)
    {
        if(e.KeyValue == (decimal) Keys.Enter)
        {
            textBox2.Text = ((ListBox)sender).SelectedItem.ToString();
            listBox.Hide();                
        }
    }

在适当的地方进行空检查

于 2012-11-06T12:54:13.733 回答
2

您需要通过“添加新项目”添加一个新组件类。然后为该类编写代码,然后在需要的地方添加该组件..

于 2012-11-05T10:44:39.023 回答
1

试试这个代码,因为它适用于我的情况:

  AutoCompleteStringCollection MyCollection = new AutoCompleteStringCollection();
                while (reader.Read())
                {
                    namesCollection.Add(reader.GetString(0));
                }
                reader.Close();
    descriptionBox.AutoCompleteMode = AutoCompleteMode.Suggest;
descriptionBox.AutoCompleteSource = AutoCompleteSource.CustomSource;    
                descriptionBox.AutoCompleteCustomSource = namesCollection;
                con.Close();

请检查读者是否获得所需的记录..:)

于 2012-10-19T11:28:17.317 回答
0

“自动建议”有点混乱,因为这基本上是自动完成的,没有用户“完成”文本的许可。不过,这里有几个链接可能会对您有所帮助:

http://docs.jquery.com/UI/Autocomplete

文本区域上的自动完成功能

多行文本框的自动完成扩展器

向下滚动链接 #2,用户建议使用 jquery 解决方案并与链接 #1 进行比较。您可能会找到解决方案。

第三个链接来自asp论坛,与您类似的问题也由链接回答。你可能想检查一下。

于 2012-11-10T14:55:01.777 回答
0

这可以帮助您解决问题;您可以更改表名。您可以更改查询以加载列表框。

    ListBox lbox;
    private void IletisimBilgileriDoldur()
    {
        try
        {
            string strQuery= "Select adres From tblIletisimBilgileri Where adres <> '';";
            veri = new OleDbCommand(strQuery,strConn);
            veri.CommandType = CommandType.Text;
            if (strConn.State == ConnectionState.Closed) strConn.Open();
            oku = veri.ExecuteReader();
            DataTable dt = new DataTable();
            dt.Load(oku);
            oku.Close();
            txtAdres.AutoCompleteCustomSource.Clear();
            if (dt.Rows.Count >= 0)
            {
                lbox = new ListBox();
                for (int count = 0; count < dt.Rows.Count; count++)
                {
                    lbox.Items.Add(dt.Rows[count]["adres"].ToString());
                }
            }
            txtAdres.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            txtAdres.AutoCompleteSource = AutoCompleteSource.CustomSource;
            if (strConn.State == ConnectionState.Open) strConn.Close();
        }
        catch (Exception)
        {
            if (strConn.State == ConnectionState.Open) strConn.Close();
        }
    }

    private void txtAdres_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e)
    {
        var x = txtAdres.Left;
        var y = txtAdres.Top + txtAdres.Height;
        var width = txtAdres.Width;
        const int height = 120;

        lbox.SetBounds(x, y, width, height);
        lbox.KeyDown += lbox_SelectedIndexChanged;
        lbox.DoubleClick += lbox_DoubleClick;
        gbxAdres.Controls.Add(lbox);
        lbox.BringToFront();
        lbox.Show();
        ActiveControl = txtAdres;
    }

    void lbox_DoubleClick(object sender, EventArgs e)
    {
        txtAdres.Text = ((ListBox)sender).SelectedItem.ToString();
        lbox.Hide();
    }
于 2013-10-12T10:34:27.203 回答