• Winform如何实现ComboBox模糊查询(转载)


    原文地址:https://www.cnblogs.com/xilipu31/p/3993049.html

    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;
            }
        }
    }
  • 相关阅读:
    solr 5.3.1安装配置
    STS 设置代码注释模板
    visual studio 设置代码注释模板
    JAXBContext处理CDATA
    用STS和Maven的方式创建一个JavaWeb项目
    .NET跨平台实践:用C#开发Linux守护进程-Daemon
    不装mono,你的.NET程序照样可以在Linux上运行!
    Tomcat关闭日志输出
    使用git pull文件时和本地文件冲突怎么办?
    Linux命令-进程后台执行:nohup(就是不挂起的意思)
  • 原文地址:https://www.cnblogs.com/shuaimeng/p/16249762.html
Copyright © 2020-2023  润新知