0

我有一个组合绑定到项目源。我想将项目的索引显示为 DisplayMemberPath 而不是绑定对象的任何属性。

我怎样才能达到同样的效果。

4

2 回答 2

2

您可以使用 MultiValueConverter 执行此操作,方法是传入集合和当前项目,然后返回项目集合中项目的索引:

public class ItemToIndexConverter : IMultiValueConverter
{
    public object Convert(object[] value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        var itemCollection = value[0] as ItemCollection;
        var item = value[1] as Item;

        return itemCollection.IndexOf(item);
    }

    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

Xaml

<ComboBox Name="MainComboBox" ItemsSource="{Binding ComboSourceItems}">
    <ComboBox.Resources>
        <cvtr:ItemToIndexConverter x:Key="ItemToIndexConverter" />
    </ComboBox.Resources>
    <ComboBox.ItemTemplate>
        <DataTemplate DataType="{x:Type vm:Item}">
            <Label>
                <Label.Content>
                    <MultiBinding Converter="{StaticResource ItemToIndexConverter}">
                        <Binding Path="Items" ElementName="MainComboBox" />
                        <Binding />
                    </MultiBinding>
                </Label.Content>
            </Label>
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>

希望这可以帮助。

于 2013-03-05T17:36:15.590 回答
1

改变你ItemsSource的东西是这样的:

public List<Tuple<int,YourObject>> MyItems {get;set;} //INotifyPropertyChanged or ObservableCollection

public void PopulateItems(List<YourObject> items)
{
     MyItems = items.Select(x => new Tuple<int,YourObject>(items.IndexOf(x),x)).ToList();
}


<ComboBox ItemsSource="{Binding MyItems}" DisplayMemberPath="Item1"/>
于 2013-03-05T14:50:49.120 回答