是否可以禁用 C# 中下拉列表组合框中的项目?
我可以在 C# 中禁用下拉列表中的项目吗?
例如,我有 2 个下拉列表组合框。它们都由月份组成(一月、二月、三月、四月等......),并且它们的功能都类似于某一年的月份范围。 当我在第一个组合框上选择 apr 时,第二个组合框无法选择 jan、feb、mar
Can I disable an item in a dropdownlist in c#?
For example, I have 2 dropdownlist combobox. Both of them consist of months (jan, feb, mar, apr, etc....) and both of them will function like a range of month in a certain year.
When I choose apr on the 1st combobox, the second combobox can't choose jan, feb, mar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以。
下拉列表中的
ListItem
有一个 启用属性。您可以将其设置为false
以禁用它们。编辑:
抱歉,我假设您正在使用 WebForms (ASP.Net)。对于 Windows 窗体,您可以看一下这个答案: Create WinForms ComboBox with non -可选项目 - 其原理相同,但有一些细微的实现细节,因为 Combobox
Items
集合是对象之一。Dropdownlist
(相当于 Web 表单)使用类型化的“ListItem”对象。HTH。
Yes you can.
ListItem
s in your dropdownlist have an Enabled property. You can set this tofalse
to disable them.EDIT:
Sorry I made the assumption you were using WebForms (ASP.Net). For windows forms, you can take a look at this answer: Create WinForms ComboBox with non-selectable items - its the same principle but with some slight implementation details because Combobox
Items
collection is one of objects.Dropdownlist
(the Web form equivalent) uses typed 'ListItem' objects.HTH.