如何在组合框中获取索引值

本文关键字:获取 索引值 组合 | 更新日期: 2023-09-27 18:33:34

public class CustomComboItem
{
    public Double CodeValue { get; set; }
    public String DisplayName { get; set; }
    public String Description { get; set; }
  }
for (int i = 0; i < locCnt; ++i)
 { //I am setting member variable of  CustomComboItem
   // and add to the combobox
   ComboBox1.Items.Add(customComboItem1);
 }

那么如果我需要按代码值搜索,我如何获取组合框的索引。

如何在组合框中获取索引值

使用 foreach

Int i = 0;
foreach(var item in myComboBox.Items)
{
    if(item.CodeValue = SearchCodeValue)
    {
        return i  // result index
    }
    else
    {
        i = i + 1;
    }
}

你可以试试:

var index = Array.FindIndex<CustomComboItem>(ComboBox1.Items.Cast<CustomComboItem>().ToArray<CustomComboItem>(), item => item.CodeValue == SearchCodeValue);