我有一个ComboBox,它有一个 MyItem 类的对象,它有一个字符串属性和一个整数属性。
_myComboBoxItems = new List<MyItem>();
_myComboBoxItems.Add(new MyItem("stringId1",intId1));
_myComboBoxItems.Add(new MyItem("stringId2",intId2));
_myComboBoxItems.Add(new MyItem("stringId3",intId3));
MyCombo.ItemsSource = _myComboBoxItems;
我现在想根据传入我的函数的 MyItem 对象设置 _myComboBoxItems 的 SelectedIndex 。
void ChangeSelectedItem(MyItem item)
{
MyCombo.SelectedIndex = find the index of the _myComboBoxItems that has an intId of e.g. item.intId
}
我该怎么做?如何搜索_myComboBoxItems的项目并获取具有与我传入的值匹配的值的项目。
答案 0 :(得分:3)
您可以使用一些LINQ:
void ChangeSelectedItem(MyItem item)
{
MyCombo.SelectedIndex = _myComboBoxItems.IndexOf(_myComboBoxItems.FirstOrDefault(x => x.intId == item.intId));
}
请注意,您也可以设置SelectedItem
的{{1}}属性:
ComboBox
然后您无需在void ChangeSelectedItem(MyItem item)
{
MyCombo.SelectedItem = MyCombo.Items.OfType<MyItem>().FirstOrDefault(x => x.intId == item.intId);
}
。