【问题标题】:Is possible to get a index from a item in a list?是否可以从列表中的项目中获取索引?
【发布时间】:2011-11-09 13:09:18
【问题描述】:

我的意思是,我有一个 listBox,我将 itemsSource 属性放入列表中。我还想在它的绑定中显示索引。

我不知道这在 WPF 中是否可行。谢谢。

【问题讨论】:

  • 在 WPF 中几乎一切皆有可能——使用正确的 XAML/代码隐藏组合

标签: c# wpf xaml data-binding listbox


【解决方案1】:

有几种方法可以做到这一点,包括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 而不是绑定到的实际项目。
  • 不,不是这样,如果是这样的话,ItemContainerGenerator 上的那些方法将是多余的。
  • 你确定吗?我的假设基于msdn.microsoft.com/en-us/library/…
  • 酷!好吧,你去。每天学些新东西。好吧,我帖子中的代码仍然有效,因为我知道它可以工作——我已经在生产代码中使用过它。尽管根据@H.B.这是很长的路要走。
猜你喜欢
  • 2013-06-15
  • 1970-01-01
  • 1970-01-01
  • 2020-04-04
  • 2019-09-01
  • 2013-01-29
  • 1970-01-01
  • 2014-09-03
  • 1970-01-01
相关资源
最近更新 更多