C# 仿百度自动匹配

 

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace WindowsApplication1
  9. {
  10. public partial class Form1 : Form
  11. {
  12. public Form1()
  13. {
  14. InitializeComponent();
  15. }
  16. private void comboBox1_TextChanged(object sender, EventArgs e)
  17. {
  18. }
  19. private void Form1_Load(object sender, EventArgs e)
  20. {
  21. // Create the list to use as the custom source.
  22. AutoCompleteStringCollection source = new AutoCompleteStringCollection();
  23. source.AddRange(new string[]
  24. {
  25. "January",
  26. "February",
  27. "March",
  28. "April",
  29. "May",
  30. "June",
  31. "July",
  32. "August",
  33. "September",
  34. "October",
  35. "November",
  36. "December"
  37. });
  38. // Create and initialize the text box.
  39. TextBox textBox = new TextBox();
  40. textBox.AutoCompleteCustomSource = source;
  41. textBox.AutoCompleteMode =
  42. AutoCompleteMode.SuggestAppend;
  43. textBox.AutoCompleteSource =
  44. AutoCompleteSource.CustomSource;
  45. textBox.Location = new Point(20, 20);
  46. textBox.Width = ClientRectangle.Width - 40;
  47. textBox.Visible = true;
  48. // Add the text box to the form.
  49. Controls.Add(textBox);
  50. //comboBox1.DropDownHeight = 300;
  51. }
  52. }

C# 仿百度自动匹配

时间: 2024-10-29 05:49:15

C# 仿百度自动匹配的相关文章

模糊匹配仿百度自动下拉提示

实际项目中,我们可以把数据获取改成ajax动态获取,在 getContent()中 <!DOCTYPE> <html> <head> <title>js/jQuery实现类似百度搜索功能</title> <meta name="Author" content="Michael"> <meta name="Keywords" content="js/jQuery

仿百度自动补全jquery

新建index.html文件,直接复制下面代码到新建的文件index.html里面,用浏览器访问,仅用于参考: <!doctype html><html><meta charset="utf-8"><style>body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px;}.auto_hidden { width:204px;border-

仿百度自动补全搜索框效果(*附有源码下载)

页面效果及代码,(源码在下面的下载链接) <html> <head> <title></title> <link rel="stylesheet" type="text/css" href="css/semantic.css"> <script type="text/javascript" src="jquery-autocomplete/jquery

c# webform 仿百度自动补全(搭配mysql数据库)

1,search.aspx(显示页面) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" ><head><title>输入

Jquery 仿百度搜索引擎自动完成功能

源代码如下所示: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>自动完成例子</title> <script type="text/javascript" src="js/jquery-1.4.1.min.js"><

JS实现仿百度输入框自动匹配功能的示例代码

JS实现仿百度输入框自动匹配功能的示例代码 作者: 字体:[增加 减小] 类型:转载 本篇文章主要是对JS实现仿百度输入框自动匹配功能的示例代码进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助 现在很多网站都有这种效果,在文本框输入一个字符,下边会出来相匹配的内容,这个代码就演示了这个功能是如何完成的,当然,这是个静态的,你可以将提示的内容从数据库读取出来,要用到AJAX那东东. 复制代码 代码如下: <HTML><HEAD><title>带输入匹配的文本框&l

JQUERY仿百度谷歌智能提示

  若使用jquery智能提示,则主要使用Ajax动态调用后台. 仿百度谷歌智能提示,说实话,本篇博客仿的不太缜密,有待继续完善. 仿百度谷歌智能提示,思路主要如下: 1.后台根据前台传递的参数进行匹配,提供数据列表. 2.前台美观智能展示选择数据列表 声明:此篇博客的后台是假数据,没有搭建数据库进行匹配. 来一张目前功能截图: 鼠标控制: 键盘控制: 选中之后: 思路:[重点前台] 监听输入框值变化,然后动态生成显示列表[仿] 显示列表中绑定各种事件(鼠标移近.移除.单击[仿] 文本框聚焦

自动匹配输入的内容(AutoCompleteTextView及MultiAutoCompleteTextView)

自动匹配输入的内容 AutoCompleteTextView 1.功能动态匹配输入的内容,如百度搜索引擎当输入文本时,可以根据内容显示匹配的热门信息 2.属性:android:completionThresh=“2”//设置输入多少字符时匹配 AutoCompleteTextView: 适配器应用:适配器的意思就是用数据源去匹配已有的数据. 第一步:初始化控件private AutoCompleteTextView acTextView; 第二步:需要一个适配器ArrayAdapter<Stri

Android控件之AutoCompleteTextView(自动匹配输入的内容)

一.功能 动态匹配输入的内容,如百度搜索引擎当输入文本时,可以根据内容显示匹配的热门信息 二.独特属性 android:completionThreshold = "2"    ——设置输入多少字符时自动匹配 三.代码演示 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" an