C#winform,combobox添加可筛选功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#winform,combobox添加可筛选功能相关的知识,希望对你有一定的参考价值。
默认combobox下拉列表提供所有供选项,当在其文本框中输入字符时,当输入1个时,下拉列表供选项为已输入字符开头的供选项,以此类推如何实现?继续答案!提前谢谢了!
首先,把所有项都添加到一个 ArrayList 里;接着,在comboBox 的 TextChanged 事件里,参考代码:
comboBox1.Items.Clear(); // 删掉原有项目if (comboBox1.Text.Trim() == "")
foreach (object obj in arrlist)
comboBox1.Items.Add(obj.ToString());
else
foreach (object obj in arrList)
if (obj.ToString().StartWith(comboBox.Text.Trim()))
comboBox1.Items.Add(obj.ToString());
这个只是给的范例参考,实际上用增加法效率比较低,题主也可以用删除法,既开头不是的就从 Items 里删掉。
参考技术A ComboBox里有一个属性:AutoCompleteCustomSource你将ComboBox的下拉列表提供所有供选项,加入一份到AutoCompleteCustomSource中。
代码如下:
//先设定ComboBox的属性:只要设定一次就可以
AutoCompleteStringCollection str = new AutoCompleteStringCollection();
comboBox1.AutoCompleteCustomSource = str;
comboBox1.AutoCompleteSource = AutoCompleteSource.CustomSource;
comboBox1.AutoCompleteMode = AutoCompleteMode.Suggest;
//加入下拉列表提供所有供选项
string[] arr =a,b,c;
comboBox1.AutoCompleteCustomSource.AddRange(arr);
comboBox1.Items.AddRange(arr ); 参考技术B 这还不好做啊?
TextBox的一个事件就行了啊
在这个事件里面把条件一获取,然后把查询出来的数据重新绑定到Combobox不就行了?
好像是OnTextBox_TextChange追问
只用一个combobox呢,你这样还得多用一个控件啊
追答文本框 Textbox 下拉表 Combobox 就两个啊!!!
追问对啊,我就是只用一个combobox控件实现这个功能
追答好吧 没有看清楚. 看成了其他文本框了. 那就在combobox的 TextChange事件里面.楼上说的对
WinForm中ComboBox添加Key/Value项获取选中项根据KeyValue设置选中项总结
转载请保留出处:http://blog.csdn.net/tp7309/article/details/9077287
WinForm下的ComboBox默认是以多行文本来设定显示列表的, 这通常不符合大家日常的应用,
因为大家日常应用通常是键/值对的形式去绑定它的.
参考了一些网上的例子,最终写了一个辅助类用于方便对ComboBox的操作:
用下面这个类的实例作为ComboBox的添加项:
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace tp7309.Winform
public class ListItem
public string Key get; set;
public string Value get; set;
public ListItem(string strKey, string strValue)
this.Key = strKey;
this.Value = strValue;
public override string ToString()
return this.Key;
/// <summary>
/// 根据ListItem中的Value找到特定的ListItem(仅在ComboBox的Item都为ListItem时有效)
/// </summary>
/// <param name="cmb">要查找的ComboBox</param>
/// <param name="strValue">要查找ListItem的Value</param>
/// <returns>返回传入的ComboBox中符合条件的第一个ListItem,如果没有找到则返回null.</returns>
public static ListItem FindByValue(ComboBox cmb, string strValue)
return cmb.Items.Cast<MyListItem>().FirstOrDefault(li => li.Value == strValue);
/// <summary>
/// 根据ListItem中的Key找到特定的ListItem(仅在ComboBox的Item都为ListItem时有效)
/// </summary>
/// <param name="cmb">要查找的ComboBox</param>
/// <param name="strValue">要查找ListItem的Key</param>
/// <returns>返回传入的ComboBox中符合条件的第一个ListItem,如果没有找到则返回null.</returns>
public static ListItem FindByText(ComboBox cmb, string strText)
return cmb.Items.Cast<MyListItem>().FirstOrDefault(li => li.Value == strText);
使用前引入命名空间:tp7309.Winform
添加项:cmb1.Items.Add(new ListItem("key1", "value1"));
cmb1.Items.Add(new ListItem("key2", "value2"));
获取选中项:
ListItem li = (ListItem)cmb1.SelectedItem;
ListItem li1 = ListItem.FindByValue(cmb1, "value1"); //根据Key得到选中项
ListItem li2 = ListItem.FindByText(cmb1, "key1"); //根据Value得到选中项
string strKey = li.Key; //得到选中项Key
string strValue = li.Value; //得到选中项Value
设置选中项:
cmb1.SelectedIndex = 0; //根据索引修改选中项
cmb1.SelectedItem = ListItem.FindByValue(cmb1, "value1"); //根据Key得到选中项
cmb1.SelectedItem = ListItem.FindByText(cmb1, "key1"); //根据Value得到选中项
以上是关于C#winform,combobox添加可筛选功能的主要内容,如果未能解决你的问题,请参考以下文章
winform中弹出对话框,并在对话框中添加ComboBox控件
C#winform问题 datagridview中combobox选项改变触发事件用哪个方法
C# winForm程序 数据绑定 更新控件问题 combobox绑定的DataSource 数据表中已经添加了新的数据