用户在文本框输入数据,文本框下面自动提示

1 系统预测的数据,我是放在listbox当中。

2 listbox 的高度随着数据变化

3 当匹配个数小于2时,自动隐藏。

效果如下。。。


用户在文本框输入数据,文本框下面自动提示_第1张图片用户在文本框输入数据,文本框下面自动提示_第2张图片用户在文本框输入数据,文本框下面自动提示_第3张图片用户在文本框输入数据,文本框下面自动提示_第4张图片用户在文本框输入数据,文本框下面自动提示_第5张图片






具体代码如下:








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;
using System.Collections;


namespace 输入提示
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void cha_Click(object sender, EventArgs e)
        {

        }
        List test = new List();
      
       
        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            listBox1.Visible = true;
            listBox1.Items.Clear();
            String str=textBox1.Text.Trim();
            for (int i = 0; i < test.Count; i++) {
                if ( test[i].ToString().Contains(str)) {
                    listBox1.Items.Add(test[i].ToString());
               
                }
            }
            if (listBox1.Items.Count < 2)
            {
                listBox1.Hide();
            }
            else {
                listBox1.Height = listBox1.Items.Count * 14;
            }

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            test.Add("1");
            test.Add("12");
            test.Add("123");
            test.Add("123");
            test.Add("1234");
            test.Add("122");
            test.Add("12345");
            listBox1.Hide();
        }

        private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            listBox1.Hide();
            textBox1.Text =listBox1.SelectedItem.ToString();
        }
    }
}








你可能感兴趣的:(小练习,winform基本应用,C#基本语法笔记)