绑定到Listbox ItemTemplate中DataTemplate项的“索引”

时间:2013-01-31 18:12:58

标签: c# wpf mvvm observablecollection enumeration

我有一个带有ItemTemplate的ListBox,它使用DataTemplate来包装我的每个viewmodel对象。

看起来像这样:

 <ListBox (Style stuff....)>
      .
      .
      .
      <ListBox.ItemTemplate>
           <DataTemplate DataType="{x:Type vm:MyViewModel}">
                <Label Content={Binding MyFirstProperty, Mode=TwoWay}" />
                <Label Content={Binding MySecondProperty, Mode=TwoWay}"/>

如何返回每个DataTemplated&#34;行&#34;的项目编号。填充我的列表框的项目?我想在DataTemplate中绑定它(因此每个行都显示带有适当索引值的编号)。

我目前正在收听包含OnCollectionViewCurrentChanged EventHandler的{​​{1}}的{​​{1}} ICollectionView

提前致谢!

0 个答案:

没有答案