【发布时间】:2011-11-09 13:09:18
【问题描述】:
我的意思是,我有一个 listBox,我将 itemsSource 属性放入列表中。我还想在它的绑定中显示索引。
我不知道这在 WPF 中是否可行。谢谢。
【问题讨论】:
-
在 WPF 中几乎一切皆有可能——使用正确的 XAML/代码隐藏组合
标签: c# wpf xaml data-binding listbox
我的意思是,我有一个 listBox,我将 itemsSource 属性放入列表中。我还想在它的绑定中显示索引。
我不知道这在 WPF 中是否可行。谢谢。
【问题讨论】:
标签: c# wpf xaml data-binding listbox
有几种方法可以做到这一点,包括some workarounds using the AlternationIndex。
但是,由于我已将 AlternationIndex 用于其他目的,因此我希望通过以下方式获得元素索引的绑定:
<MultiBinding Converter="{StaticResource indexOfConverter}">
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type ItemsControl}}" />
<Binding Path="."/>
</MultiBinding>
转换器定义为:
public class IndexOfConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (Designer.IsInDesignMode) return false;
var itemsControl = values[0] as ItemsControl;
var item = values[1];
var itemContainer = itemsControl.ItemContainerGenerator.ContainerFromItem(item);
// It may not yet be in the collection...
if (itemContainer == null)
{
return Binding.DoNothing;
}
var itemIndex = itemsControl.ItemContainerGenerator.IndexFromContainer(itemContainer);
return itemIndex;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, System.Globalization.CultureInfo culture)
{
return targetTypes.Select(t => Binding.DoNothing).ToArray();
}
}
【讨论】:
ItemsControl.Items.IndexOf(values[1]) 呢?
Items 集合包含 UIElements 而不是绑定到的实际项目。