如何对由 '-' 分隔的两个连接字符串使用自动建议在组合框中?
我正在使用包含“01322-Abcdefg”等字符串的组合框。 将数据表指定为其数据源。
我想在组合框中使用自动建议。 我正在使用下面的代码: 组合框.DataSource = 数据表 组合框.AutoCompleteMode = AutoCompleteMode.Suggest combobox.AutoCompleteSource = AutoCompleteSource.ListItems
但这只会建议初始字符(例如:01322),在我的情况下,我希望用户建议值,即使他/她键入下一组字符(例如:Abcdefg)。
谢谢
I am using combobox containing string like "01322-Abcdefg".
Assigning datatable as datasource to it.
I want to use autosuggestion in combobox.
I am using below code :
combobox.DataSource = datatable
combobox.AutoCompleteMode = AutoCompleteMode.Suggest
combobox.AutoCompleteSource = AutoCompleteSource.ListItems
But this will only suggest initial characters only ( eg : 01322 ),In my case i want user to suggest value even if he/she type next set of characters ( eg : Abcdefg ).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建并实现您自己的 IAutoComplete 版本?这听起来像是一个常见的请求,因此可能值得搜索现有的解决方案和 问题。
Create and implement your own version of IAutoComplete? It sounds like a common request so might be worth searching for existing solutions and questions first.