我有一个项目源的组合绑定。我想将项目的索引显示为DisplayMemberPath,而不是绑定对象的任何属性。
我怎样才能达到同样目的。
答案 0 :(得分: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"/>
答案 1 :(得分:1)
您可以通过传入集合和当前项目然后返回项目集合中项目的索引来使用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>
希望这有帮助。