下拉combobox输入自动提示(仿ie地址栏)c (ComboBox input automatically prompts (imitation IE address bar) c )

ie地址栏  时间:2021-02-27  阅读:()

combobox输入自动提示(仿ie地址栏)c# ComboBox inputautomatically prompts (imitation IE address bar) c#Recently, when you do projects, you need to use comboBox toimplement the functions similar to IE drop-down lists! The mostdirect way is to monitor the comboBox textChanged event, whenthe event occurs, the data from (I use arrayList to store datatemporarily) with string matching, and then added to thedrop-down list in the comboBox.

1 : how to display drop-down list in textChanged, because thedisplay drop-down list is usually the user click the drop-downarrow displayed, and later use comboBox1.DroppedDown = true;can display the contents of the drop-down list.

2: add content to the drop-down list: comboBox1. Items.Add (STR) ;use this statement to add STR to the drop-down list

3: delete the contents of the drop-down list?When comboBox textis changed, the original, down the contents of the list may nolongermatch, somy idea is to change every time text will deleteall contents drop-down list, and then re iterates over thecollection, will match the contents of re added to the drop-downlist: (comboBox1. Items.Clear) ; but this statement will be a theproblem is text, the cursor will automatically go to the left:so, this line did not continue, but found that the mouse willrealize sometimes lost the cursor, don' t feel very well!

4: later found that comboBox and textBox support built-insearch prompt function, add the following statement in form' sInitial izeComponent () :

This.comboBox1.AutoCompleteCustomSource.AddRange (Newstring[] {"10. 152. 154.89", "10. 152. 154.90", "10. 152.252. 10","10. 152.252. 11"} ) ;

This.comboBox1.AutoCompleteMode =

System.Windows.Forms.AutoCompleteMode.Suggest;

This.comboBox1.AutoCompleteSource =

System.Windows.Forms.AutoCompleteSource.CustomSource;Where this.comboBox1.AutoCompleteCustomSource.AddRange (Newstring[] {"10. 152. 154.89", "10. 152. 154.90", "10. 152.252. 10","10. 152.252. 11"} ) is the addition of data to the search rangeThis.comboBox1.AutoCompleteMode =

System.Windows.Forms.AutoCompleteMode.Suggest;

Set comboBox to complete the built-in search, the default isNone, and Append, and SuggestAppend attributes, in addition tothe default None can achieve search tips function, but theappearance is different

This.comboBox1.AutoCompleteSource =

System.Windows.Forms.AutoCompleteSource.CustomSource; makethe search range, this is because I use new string[]

{"10. 152. 154.89", "10. 152. 154.90", "10. 152.252. 10",

"10. 152.252. 11"} as the search scope, so defined as

Cust omS our ce

System.Windows.Forms.AutoCompleteSource also has a Allurl

property, if you change the code to

This.comboBox1.AutoCompleteMode =

System.Windows.Forms.AutoCompleteMode.Suggest;this.comboBox1.AutoCompleteSource =

System.Windows.Forms.AutoCompleteSource.Al lurl;

In this way, the comboBox can achieve the same function as theIE drop-down list, other attributes such as AllSystemSourcescan try to own, so that the completion of the comboBox searchprompt function.

Can you share the code?. Thanks。 My EMAIL:panjun11@163.com#2 floor 2009-12-11 15:54 Longkin

This.comboBox1.AutoCompleteSource =

System.Windows.Forms.AutoCompleteSource.Al lurl;

If comboBox1 has a data source, you can use

AutoCompleteSource.ListItems directly;

Support (0) against (0)

# 3楼2009-12-11 longkin 15:56

还有建议用这个autocompletemode. suggestappend

效果稍微好点

支持0 0反对

# 4楼2010-01-26 17:09张磊张拉里。

能否像dropdownwi dth一样修改提示框的宽度

我找不到类似属性

支持0 0反对

# 5楼2012-01-31 14:17 mo_mo_mo

@ Longkin

正解把你的两条意见实施了效果不错

感谢楼主感谢longki n

C#中ComboBox下拉选中一个后下面的TextBox自动显示数据库里对应的值

2014-03-01 18: 14域雪无痕|分类 C # / .NE T |浏览206次如访问中一表有姓名电话地址。在ComboBox中选中某一姓名对应的TextBox显示其号码用SelectedIndexChanged监听代码分享到

2014-03-01 18:25提问者采纳答题闯关过关即送礼快来参加~Web还是赢

赢得的话监听SelectedIndexChanged

Web的话最好还是用JavaScript在客户端实现

追问

知道用SelectedIndexChanged代码如何写

回答

那就是说是赢得咯

首先得看你ComboBox是那种类型的根据不同的类型会有以下几种方式能获取到当前选中的下拉菜单你分别试试

组合框。 tostring() SelectedValue

组合框。 tostring()教科书选文

如果是直接DataSource等于表的话要先拆箱出来

模型组合。 SelectedItem。姓名

得到姓名之后写textbox.text =姓名就行了

提问者评价

谢谢

3条回答其他

2014-03-01 18: 19 xmandlp |七级

在ComboBox的selectindexchanged事件中添加你查询数据库的代码把查询结果赋值到TextBox就可以了

追问

知道这么做代码不会写啊数据库是访问的 ComboBox的值与对相对应

评论| 0 0

2014-03-01 18:23 ckvming |四级

你在页面加载的时候首先要绑定好ComboBox的数据源。

然后下拉的时候就会自动显示选定的值了。

C #中ComboBox或者教材怎么实现记忆联想功能求指导  2013-09-04 00:48f sf snake |分类 C # / .NET |浏览178次C#在形式窗体中用Comb oBox或教材怎么实现记忆联想功能就是当输入任何字符是都会弹出一个下拉菜单提示含有该字符的字符串教材的就是提示之前曾经输入过的字符串而ComboBox的就是提示编辑项里面事先输入的字符串这两个控件的autocomp let esource的属性已设为设置 autocompletemode属性为suggestappend但还是没有一点效果希望能详细点谢谢求大神指导

分享到

2013-09-04 13:45提问者采纳答题闯关过关即送礼快来参加~在控件录入或ontextchange事件加入监听函数捕获输入内容显示相应推送结果

追问

新手希望大侠指导下谢谢可以相信说明下吗

回答

专门做个检索线程不用直接用BackgroundWorker好处就是可以帮你省去编写保证线程互操作安全性的多余代码

提问者评价

谢谢

Gcorelabs:美国GPU服务器,8路RTX2080Ti;2*Silver-4214/256G内存/1T SSD,1815欧/月

gcorelabs怎么样?gcorelabs是创建于2011年的俄罗斯一家IDC服务商,Gcorelabs提供优质的托管服务和VPS主机服务,Gcorelabs有一支强大的技术队伍,对主机的性能和稳定性要求非常高。Gcorelabs在 2017年收购了SkyparkCDN并提供全球CDN服务,目标是进入全球前五的网络服务商。G-Core Labs总部位于卢森堡,在莫斯科,明斯克和彼尔姆设有办事处。...

御云(RoyalYun):香港CN2 GIA VPS仅7.9元每月起,美国vps仅8.9/月,续费同价,可叠加优惠

御云怎么样?炎炎暑期即将来临,御云(royalyun)香港、美国服务器开启大特惠模式。御云是新成立的云服务提供商,主要提供香港、美国的云服务器,不久将开启虚拟主机业务。我们的香港和美国主机采用CN2 GIA线路。目前,香港cn2 gia vps仅7.9元每月起,美国vps仅8.9/月,续费同价,可叠加优惠,香港云服务器国内延迟一般在50ms左右,是搭建网站的最佳选择,但是请不要用于违法用途。点击进...

BlueHost主机商年中618活动全场低至五折

BlueHost 主机商在以前做外贸网站的时候还是经常会用到的,想必那时候有做外贸网站或者是选择海外主机的时候还是较多会用BlueHost主机商的。只不过这些年云服务器流行且性价比较高,于是大家可选择商家变多,但是BlueHost在外贸主机用户群中可选的还是比较多的。这次年中618活动大促来袭,毕竟BLUEHOST商家目前中文公司设立在上海,等后面有机会也过去看看。他们也会根据我们的国内年中促销发...

ie地址栏为你推荐
网页解密急急急~~谁知道怎么让所有的网页都设密码?以及破解的办法啊? 谢谢了谁帮帮我啊明星论坛怎么建免费的论坛网站?深圳公交车路线深圳公交路线伪静态伪静态和真静态哪种静态方式好唱吧电脑版官方下载唱吧有没有电脑版的啊?qq空间装扮qq空间怎么装扮天天酷跑刷金币如何使用八门神器给天天酷跑刷钻刷金币雅虎天盾雅虎天盾、瑞星杀毒软件、瑞星防火墙、卡卡上网安全助手能同时使用吗?奇虎论坛360有论坛中心?人人逛街人人都喜欢逛街吗
免费二级域名 黑龙江域名注册 个人域名备案 东莞电信局 host1plus 息壤主机 全球付 流媒体服务器 老左博客 免费cdn加速 外国空间 监控宝 2017年万圣节 主机合租 本网站服务器在美国 国外免费全能空间 web服务器的架设 独享主机 江苏徐州移动 汤博乐 更多