在Winfrom下实现类似百度、Google搜索自能提示功能

前记:数据源来自页面的一个ComboBox的数据源List<Contract>集合

页面放置一个TextBox(搜索框)、ListBox(显示搜索出来的数据),ListBox位置位于TextBox正下方,初始化隐藏。

TextBox--->txtSearch  ListBox--->listBox1关于两个控件的事件,详见代码:

[c-sharp] view plain copy

  1. #region  自能提示
  2. Point pList = new Point();
  3. private void txtSearch_TextChanged(object sender, EventArgs e)
  4. {
  5. if (this.txtSearch.Text.Trim() != "")
  6. {
  7. List<Contract> source = getDataTable(this.txtSearch.Text.Trim());
  8. BindList(source);
  9. this.listBox1.Visible = true;
  10. }
  11. else
  12. {
  13. this.listBox1.Items.Clear();
  14. this.listBox1.Visible = false;
  15. }
  16. }
  17. private void txtSearch_KeyDown(object sender, KeyEventArgs e)
  18. {
  19. if (e.KeyCode == Keys.Down && this.listBox1.Visible)
  20. {
  21. this.listBox1.Focus();
  22. if (this.listBox1.SelectedItems.Count > 0)
  23. {
  24. this.listBox1.SetSelected(this.listBox1.SelectedIndex, false);
  25. }
  26. if (this.listBox1.Items.Count > 0)
  27. {
  28. this.listBox1.SetSelected(0, true);
  29. }
  30. }
  31. }
  32. private void listBox1_MouseUp(object sender, MouseEventArgs e)
  33. {
  34. if (this.listBox1.SelectedItems.Count > 0)
  35. {
  36. this.txtSearch.Text = this.listBox1.Text;
  37. cboChoCont.Text = this.txtSearch.Text;
  38. this.listBox1.Visible = false;
  39. this.txtSearch.Focus();
  40. }
  41. }
  42. private void listBox1_MouseMove(object sender, MouseEventArgs e)
  43. {
  44. Point m = new Point(e.X, e.Y);
  45. int index = GetItemAt(this.listBox1, e.X, e.Y);
  46. if (this.listBox1.SelectedItems.Count > 0 && this.listBox1.SelectedIndex != index)
  47. {
  48. this.listBox1.SetSelected(this.listBox1.SelectedIndex, false);
  49. }
  50. if (index != -1 && this.listBox1.SelectedIndex != index)
  51. {
  52. this.listBox1.SetSelected(index, true);
  53. }
  54. }
  55. private void listBox1_KeyDown(object sender, KeyEventArgs e)
  56. {
  57. if (e.KeyCode == Keys.Enter && this.listBox1.Visible && this.listBox1.SelectedItems.Count > 0)
  58. {
  59. this.txtSearch.Text = this.listBox1.SelectedItems[0].ToString();
  60. this.cboChoCont.Text = this.txtSearch.Text;
  61. this.listBox1.Visible = false;
  62. this.txtSearch.Focus();
  63. }
  64. }
  65. private bool GetItemAt(Point Mousep, int index)
  66. {
  67. int ph = this.listBox1.GetItemHeight(index) * index;
  68. int ph1 = this.listBox1.GetItemHeight(index) * index + this.listBox1.GetItemHeight(index);
  69. if (Mousep.Y > ph && Mousep.Y < ph1 && Mousep.X > 0 && Mousep.X < this.listBox1.Width)
  70. {
  71. return true;
  72. }
  73. else
  74. {
  75. return false;
  76. }
  77. }
  78. private int GetItemAt(ListBox listBox, int X, int Y)
  79. {
  80. int index = -1;
  81. for (int i = 0; i < listBox.Items.Count; i++)
  82. {
  83. System.Drawing.Rectangle r = listBox.GetItemRectangle(i);
  84. if (r.Contains(new Point(X, Y)))
  85. {
  86. index = i; ;
  87. break;
  88. }
  89. }
  90. return index;
  91. }
  92. private void BindList(List<Contract> source)
  93. {
  94. this.listBox1.Items.Clear();
  95. for (int i = 0; i < source.Count; i++)
  96. {
  97. this.listBox1.Items.Add(source[i].Con_Name_Serial);
  98. }
  99. if (source.Count < 11)
  100. {
  101. this.listBox1.Height = 15 * source.Count + 15;
  102. }
  103. else
  104. {
  105. this.listBox1.Height = 150;
  106. }
  107. this.listBox1.Visible = true;
  108. }
  109. private List<Contract> getDataTable(string s)
  110. {
  111. List<Contract> searchList = new List<Contract>();
  112. int length = list.Count;
  113. for (int i = 0; i < length; i++)
  114. {
  115. if (list[i].Con_Name_Serial.IndexOf(s) == 0)
  116. searchList.Add(list[i]);
  117. }
  118. return searchList;
  119. }
  120. private void listBox1_DrawItem(object sender, DrawItemEventArgs e)
  121. {
  122. // Set the DrawMode property to draw fixed sized items.
  123. listBox1.DrawMode = DrawMode.OwnerDrawFixed;
  124. // Draw the background of the ListBox control for each item.
  125. e.DrawBackground();
  126. // Define the default color of the brush as black.
  127. Brush myBrush = Brushes.Black;
  128. FontFamily fontFamily = new FontFamily("宋体");
  129. System.Drawing.Font myFont = new Font(fontFamily, 9);
  130. // Determine the color of the brush to draw each item based on the index of the item to draw.
  131. if((e.State & DrawItemState.Selected) == DrawItemState.Selected)
  132. {
  133. //e.Graphics.FillRectangle(Brushes.Blue, e.Bounds);
  134. if(e.Index > -1)
  135. {
  136. e.Graphics.DrawString(listBox1.Items[e.Index].ToString(), myFont, Brushes.White, e.Bounds, StringFormat.GenericDefault);
  137. }
  138. }
  139. else
  140. {
  141. //e.Graphics.FillRectangle(Brushes.White, e.Bounds);
  142. if(e.Index > -1)
  143. {
  144. e.Graphics.DrawString(listBox1.Items[e.Index].ToString(), myFont, myBrush, e.Bounds, StringFormat.GenericDefault);
  145. }
  146. }
  147. // Draw the current item text based on the current Font and the custom brush settings.
  148. //e.Graphics.DrawString(listBox1.Items[e.Index].ToString(), e.Font, myBrush, e.Bounds, StringFormat.GenericDefault);
  149. // If the ListBox has focus, draw a focus rectangle around the selected item.
  150. e.DrawFocusRectangle();
  151. }
  152. #endregion

转载来自:http://blog.csdn.net/Rock870210/article/details/5856235

时间: 2024-10-11 04:16:32

在Winfrom下实现类似百度、Google搜索自能提示功能的相关文章

PHP+mysql数据库开发类似百度的搜索功能:中英文分词+全文检索(MySQL全文检索+中文分词(SCWS))

PHP+mysql数据库开发类似百度的搜索功能:中英文分词+全文检索 中文分词: a)   robbe PHP中文分词扩展: http://www.boyunjian.com/v/softd/robbe.html i.  Robbe完整版本下载:Robbe完整版本(PHP测试程序, 开发帮助文档, WinNT下php各版本的dll文件)下载: http://code.google.com/p/robbe(“谷歌”无法使用) b) SCWS(简易中文分词) 基于HTTP/POST的分词 : htt

Jquery实现类似百度的搜索框

最近工作中需要做一个搜索框,类似百度的搜索框,需要达到两个功能: 1.输入关键字,展示匹配的下拉列表 2.选择匹配的项后查出相关内容 一般电商网站中也经常用到该搜索条,首先分析功能实现,输入关键字马上显示匹配项列表,实现该功能输入框需要绑定"input"事件,然后向后台发送异步请求,将数据展示在页面上.使用鼠标或上下键选择匹配项,点击搜索或"Enter"键后搜索具体结果.这里要用到两个异步请求,第一个请求匹配项,第二个请求搜索结果.键盘,鼠标以及输入框的事件都要监听

站长工具|百度搜索框提示功能

百度向站长开放免费“百度搜索框”代码和“百度搜索框提示”代码.只需进行简单的设置, 即可将“ 百度搜索框( 带提示功能)”功能快速加入到您的网页中.提升用户在网站中的搜索体验. 根据不同类型的网站需求,站长工具一共提供三种引入方式供您选择: 简单方式——方便的将“百度搜索框(带提示功能)”直接加入到您的网页中.将以下代码加入到您的网页中,即可获得带有“搜索框提示”功能的百度搜索框 HTML代码: <form action=”http://www.baidu.com/baidu” target=”

Android搜索自动提示功能 AutocompleteTextView

1.配置main.xml中自动提示控件: <AutoCompleteTextView android:id="@+id/autotv_searchresult" android:layout_width="280dip" android:layout_height="35dip" android:layout_centerInParent="true" android:background="#00000000

ajax+JQuery实现类似百度智能搜索框

最近再学习ajax,上课老师让我们实现一个类似百度首页实现搜索框的功能,刚开始做的时候没有一点头绪,查阅大量网上的资源后,发现之前的与我们现在的有些区别,所以在此写出来,希望能对大家有所帮助. 下面先展示下效果图:(ps:图片中的文字是参考的,不具有任何的攻击意义) 项目的目录结构: 一:首先是login.jsp页面 需要注意的是我是通过js的类库(Jquery)封装的ajax,需要在webcontent下面导入jquery jar包,代码如下: <%@ page language="ja

**IOS自动完成(搜索自动提示)功能实现

UISearchBar搜索AutoComplete下拉列表搜索提示 http://www.codeios.com/thread-10685-1-1.html 介绍: 在搜索框上加入下拉列表.在搜索框上面输入文字时,出现下拉列表,可以用作搜索自动提示. 测试环境: [Code4App]编译测试,测试环境:Xcode 4.3, iOS 5.0. http://code4app.com/ios/Drop-Down-List/5002d3706803faf208000000

使用javascript ajax C#实现类似百度的搜索框效果

先看一下最终效果  样式不太好看,但是功能是完全可行的,在文本框中输入文字之后,会实现自动搜索的功能. 首先介绍一下原理: 文本框下方是一个div,里面是一个ul标签,初始状态此ul中不包含任何的li标签. 当文本框文字改变的时候,使用ajax把文本框内容取出来,传递到后台,在后台中从数据库查询数据并把结果返回到前台页面. 返回的结果格式设置为:A,B,C,D:以便在前台实现字符串分割. 前台页面把返回的字符串切分成数组,依次遍历并给ul添加li节点. 具体方法: ①前台布局就不多说了 ,重要的

类似百度首页搜索静态图

1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 5 <title></title> 6 <link href="css/d

vue单页面条件下添加类似浏览器的标签页切换功能

在用vue开发的时候,单页面应用程序,而又有标签页这种需求,各种方式实现不了, 从这个 到这个,然后再返回上面那个 因为每个标签页的route不一样,导致组件重新渲染的问题,怎么都不知道如何实现......... 简直郁闷到爆炸,后来和同学谈起的时候,说起生命周期这个才恍然大悟, 对于vue的生命周期,因为用的少,本身多用的是created,mounted这两个,都忘记beforeDestroy这些了,然后抓瞎了好久 实现方式是 每次销毁组件之前   缓存数据    能够用到的是 this.$d