是否可以禁用 C# 中下拉列表组合框中的项目?

发布于 2024-10-18 00:40:29 字数 145 浏览 1 评论 0原文

我可以在 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 技术交流群。

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

发布评论

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

评论(1

毁虫ゝ 2024-10-25 00:40:29

是的,你可以。

下拉列表中的 ListItem 有一个 启用属性。您可以将其设置为 false 以禁用它们。

编辑:

抱歉,我假设您正在使用 WebForms (ASP.Net)。对于 Windows 窗体,您可以看一下这个答案: Create WinForms ComboBox with non -可选项目 - 其原理相同,但有一些细微的实现细节,因为 Combobox Items 集合是对象之一。 Dropdownlist(相当于 Web 表单)使用类型化的“ListItem”对象。

HTH。

Yes you can.

ListItems in your dropdownlist have an Enabled property. You can set this to false 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.

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