我需要在窗体中找到具有最少项目数的窗体上的六个ListBox。
我如何使用ListBox.Item.Count结合扩展方法,属性Min()从LINQ返回的ListBox与最低的项目数?
我尝试了以下操作,但无法正常运行:
foreach (var item in Controls.OfType<ListBox>())
{
if (item.Items.Count <= min)
{
listbox = item;
min = listbox.Items.Count;
}
}
斯蒂芬大帝
相关分类