如何从下拉列表的 ItemList 中删除除具有特定值的列表项之外的所有列表项?

发布于 2024-12-11 14:13:20 字数 257 浏览 0 评论 0原文

我有一个下拉菜单:myDropDown。

我需要删除其项目集合中所有值不等于“-1”的 ListItem 吗?

myDropDown.Items. ... // TODO: Remove all ListItems that has a value different than '-1'

我不想创建循环等。

我怎样才能以最自我记录的方式实现这一点?我假设使用 LINQ 语句。

谢谢

I have a dropdown : myDropDown.

And I need to remove all ListItem in its item collection which does not have a value equals to '-1' ?

myDropDown.Items. ... // TODO: Remove all ListItems that has a value different than '-1'

I don't want to create a loop etc.

How can I achieve this in a most self-documenting way? I assume with a LINQ statement.

Thanks

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

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

发布评论

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

评论(2

尾戒 2024-12-18 14:13:21

假设您正在使用 System.Web.UI.WebControls.DropDownList ,我认为旧的 for 循环是最好的选择:

for (int i = d.Items.Count - 1; i >= 0; i--)
{
  if (d.Items[i].Value != "-1") d.Items.RemoveAt(i);
}

Assuming you are working with a System.Web.UI.WebControls.DropDownList, I think the good old for loop is the best choice here:

for (int i = d.Items.Count - 1; i >= 0; i--)
{
  if (d.Items[i].Value != "-1") d.Items.RemoveAt(i);
}
断舍离 2024-12-18 14:13:21
myDropDown.Items = myDropDown.Items.Where(x => x.value != -1);
myDropDown.Items = myDropDown.Items.Where(x => x.value != -1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文