Windows窗体:具有历史记录的文本框

发布于 2024-07-18 09:15:49 字数 98 浏览 5 评论 0原文

有谁知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌酱 2024-07-25 09:15:49

查看 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文