根据条件在下拉列表中显示特定项目

发布于 2024-09-24 04:19:06 字数 270 浏览 2 评论 0原文

我有一个包含四个选项的下拉列表,例如:

  • 的新
  • 已审核
  • 待审核
  • 已呈现

我需要根据某些条件仅在下拉列表中显示特定项目。 我的意思是,有时只有 2 项

  • 评论,

有时有 3 项

  • 评论
  • 待审查

,有时是所有项目。 我该怎么做?我正在使用 C#。

I have a dropdown list with four options like:

  • New
  • Reviewed
  • To be Reviewed
  • Presented

I need to display only specific items in the dropdown list based on some conditions.
I mean sometimes with only 2 items

  • New
  • Review

Sometimes with 3 items

  • New
  • Review
  • To be Reviewed

and sometimes all items.
How can I do this? I am using C#.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

迷鸟归林 2024-10-01 04:19:06
if (condition)
{
     ddlList.Items.Add(new ListItem("Text", "Value"));
}
if (condition)
{
     ddlList.Items.Add(new ListItem("Text", "Value"));
}
酒儿 2024-10-01 04:19:06

在下拉列表的 DataBound 事件中,您可以循环遍历 Items 集合并删除任何需要过滤的项目。唯一真正的技巧是向后循环集合,这样您就可以删除项目而不会弄乱迭代器的位置。

Private Sub MyDropDownList_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyDropDownList.DataBound
    For x As Integer = MyDropDownList.Items.Count - 1 To 0 Step -1
        If RemoveToBeReviewed()
            If MyDropDownList.Items(x).Text = "To Be Reviewed" Then
                MyDropDownList.Items.RemoveAt(x)
            End If
        End If
    Next
End Sub

In the DataBound event of the dropdown, you can loop through the Items collection and remove any items that need to be filtered. The only real trick is to loop backwards through the collection, so that you can remove items without messing up your iterator location.

Private Sub MyDropDownList_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyDropDownList.DataBound
    For x As Integer = MyDropDownList.Items.Count - 1 To 0 Step -1
        If RemoveToBeReviewed()
            If MyDropDownList.Items(x).Text = "To Be Reviewed" Then
                MyDropDownList.Items.RemoveAt(x)
            End If
        End If
    Next
End Sub
心碎的声音 2024-10-01 04:19:06

您可以按如下方式使该项目可见,假设 tstr 是您的菜单项:

tstr.DropDownItems[i].Visible = false; 

其中 i 是您的项目的索引。

You can make the item visible as follows, assuming tstr is your menu item:

tstr.DropDownItems[i].Visible = false; 

where i is the index of your item.

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