如何更改自动完成搜索机制 C#
我正在用 C# 编写 WinForm 项目。我需要根据不同情况下正则表达式搜索模式的变化使用自动竞争建议。 CustomSource 的内置自动完成建议模式仅在字符串开头使用搜索机制。如何更改基于正则表达式搜索模式的搜索模式?如果不可能的话。如何从 win API 创建或实现 C# 和 Windows 使用的自动建议表单类?我正是需要这个表格类。 谢谢,基里尔。
I am writing WinForm project on C#. I need to use autocompete suggest based on variations of Regular Expressions search mode in different situations. The built-in autocomplete suggest mode from CustomSource use search mechanism on beginning of string only. How can I change the search mode based on Regular Expression search mode? If it's impossible. How can I create or implement the Auto-Suggest Form class used by C# and Windows from win API? I need exactly this form class.
Thank's, Kirill.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个非常好看的教程: 在 C# 中创建一个自动完成文本框控件,网址为 http://www.dreamincode.net,然后填充源代码在底部下载。
您应该能够更改 OnTextChanged 以使用正则表达式进行查找。
There is a really good looking tutorial : Create An AutoComplete TextBox Control In C# at http://www.dreamincode.net, and the fill source code is download about at the bottom.
You should be able to change OnTextChanged to use you regex to do the lookup.