C# 阻止用户在下拉组合框中输入选项
我有一个包含项目的下拉组合框,只是想知道是否有一个选项可以阻止人们在其中输入内容,并且只允许他们选择其中已有的项目?
I have a drop down combo box with items in, just wondered whether there was an option to stop people from typing in it, and only allow them to select an item that is already in there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
DropDownStyle
设置为DropDownList
。Set the
DropDownStyle
toDropDownList
.WinForms:
WPF:
WinForms:
WPF:
其他人已经介绍了 WinForms 组合框;为了完整起见,在 WPF 中,您必须设置
IsReadOnly = true
和IsEditable = false
。The others have covered a WinForms combo box; for completeness, in WPF you have to set
IsReadOnly = true
andIsEditable = false
.