我在我的 ComboBox 中添加了一个SelectionChanged
事件,我需要找到上一个选定项目的索引。不过,我找不到找到项目索引的简单方法。我有:
// In the XAML file
<ComboBox Name="myCombobox" ItemsSource="{Binding MyCollectionView}" SelectionChanged="myCombobox_SelectionChanged" />
// In the XAML.cs file
public void myCombobox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
ComboBoxItem item = e.RemovedItems[0];
if (e.AddedItems.Count > 0)
{
ComboBoxItem item = e.RemovedItems[0];
if (item != null)
int index = /* Find index of this item! */;
}
}
在这里检索正确索引的最简单方法是什么?为什么ComboBoxItem
正义没有Index
财产?