Combobox模糊查询

using  System;
using  System.Collections.Generic;
using  System.ComponentModel;
using  System.Data;
using  System.Drawing;
using  System.Linq;
using  System.Text;
using  System.Windows.Forms;
 
namespace  TimerDemo
{
     public  partial  class  Form2 : Form
     {
         //初始化绑定默认关键词(此数据源可以从数据库取)
         List< string > listOnit = new  List< string >();
         //输入key之后,返回的关键词
         List< string > listNew = new  List< string >();
 
         public  Form2()
         {
             InitializeComponent();
         }
 
         private  void  Form2_Load( object  sender, EventArgs e)
         {
             //调用绑定
             BindComboBox();
         }
         /// <summary>
         /// 绑定ComboBox
         /// </summary>
         private  void  BindComboBox()
         {
             listOnit.Add( "张三" );
             listOnit.Add( "张思" );
             listOnit.Add( "张五" );
             listOnit.Add( "王五" );
             listOnit.Add( "刘宇" );
             listOnit.Add( "马六" );
             listOnit.Add( "孙楠" );
             listOnit.Add( "那英" );
             listOnit.Add( "刘欢" );
 
             /*
              * 1.注意用Item.Add(obj)或者Item.AddRange(obj)方式添加
              * 2.如果用DataSource绑定,后面再进行绑定是不行的,即便是Add或者Clear也不行
              */
             this .comboBox1.Items.AddRange(listOnit.ToArray());
         }
 
         private  void  comboBox1_TextChanged( object  sender, EventArgs e)
         {
             /*
              
              * 不能用TextChanged操作,当this.comboBox1.DroppedDown为True时,选择项上下键有冲突
              
              */
 
         }
 
         private  void  comboBox1_TextUpdate( object  sender, EventArgs e)
         {
             //清空combobox
             this .comboBox1.Items.Clear();
             //清空listNew
             listNew.Clear();
             //遍历全部备查数据
             foreach  ( var  item in  listOnit)
             {
                 if  (item.Contains( this .comboBox1.Text))
                 {
                     //符合,插入ListNew
                     listNew.Add(item);
                 }
             }
             //combobox添加已经查到的关键词
             this .comboBox1.Items.AddRange(listNew.ToArray());
             //设置光标位置,否则光标位置始终保持在第一列,造成输入关键词的倒序排列
             this .comboBox1.SelectionStart = this .comboBox1.Text.Length;
             //保持鼠标指针原来状态,有时候鼠标指针会被下拉框覆盖,所以要进行一次设置。
             Cursor = Cursors.Default;
             //自动弹出下拉框
             this .comboBox1.DroppedDown = true ;
         }
     }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

快乐_男孩

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值