我有一个带有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
。
提前致谢!