0

我在我的 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财产?

4

1 回答 1

3

你可以尝试这样的事情:

Combobox comboBox = sender as ComboBox;

 if (e.AddedItems.Count > 0)
    {
        ComboBoxItem item = e.RemovedItems[0];
        if (item != null)
            int index = combobox.Items.IndexOf(item);
    }
于 2013-10-16T11:00:15.110 回答