Windows窗体:具有历史记录的文本框
有谁知道 Windows 窗体控件的作用类似于浏览器的地址栏?
它就像一个文本框,但右侧有一个下拉菜单,显示以前输入的文本的历史记录。
多谢!
does anyone know about a windows forms control that acts like the address bar of a browser?
it is just like a textbox, but to the right there is a dropdown menu that shows the history of previously entered text.
thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 TextBox 类上的属性“AutoCompleteCustomSource”、“AutoCompleteMode”和“AutoCompletesource”。
Look at properties "AutoCompleteCustomSource", "AutoCompleteMode" and "AutoCompletesource" on TextBox class.
为此,您可以使用组合框。 只需将以前的条目添加到项目列表中即可。 如果您真正想要的是自动完成,WinForms TextBox 控件本身就支持它。
You can use a ComboBox for this. Just add the previous entries to the item list. If what you actually want is AutoComplete, the WinForms TextBox control supports that natively.