本文介绍了得到asp.net ListBox中所有选定的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
任何人都知道的顺利地通过使用扩展方法来获取所有的选择在ListBox控件的项目?
和,请饶了我的说法的这是无关紧要的,因为最终一切使用一个循环遍历的项目,反正找到选定的的一个人如何得到这样的列表。
解决方案
VAR选择= yourListBox.Items.GetSelectedItems();
//变种选定= yourDropDownList.Items.GetSelectedItems();
//变种选定= yourCheckBoxList.Items.GetSelectedItems();
//变种选定= yourRadioButtonList.Items.GetSelectedItems();公共静态类扩展
{
公共静态的IEnumerable<&列表项GT; GetSelectedItems(
这ListItemCollection项)
{
返回items.OfType<&列表项GT;()式(项目=> item.Selected)。
}
}
Anyone know of a smooth way to get all of the selected items in a listbox control by using extension methods?
And, please, spare me the argument of it's irrelevant as to how one gets such a list because in the end everything uses a loop to iterate over the items and find the selected ones anyway.
解决方案
var selected = yourListBox.Items.GetSelectedItems();
//var selected = yourDropDownList.Items.GetSelectedItems();
//var selected = yourCheckBoxList.Items.GetSelectedItems();
//var selected = yourRadioButtonList.Items.GetSelectedItems();
public static class Extensions
{
public static IEnumerable<ListItem> GetSelectedItems(
this ListItemCollection items)
{
return items.OfType<ListItem>().Where(item => item.Selected);
}
}
这篇关于得到asp.net ListBox中所有选定的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!