如何获取数据绑定ListBox的虚拟Item?
如果我有一个绑定到 ListBox
的汽车列表。 我现在想要实现第一个项目最初是焦点的,另外我想在显示的列表框项目之间实现完整的键盘导航,因此我需要访问虚拟创建的项目控件。
问题是 itemStack.Items[i]
返回 Car
本身,而不是 CarEditControl
。如何获得虚拟创建的物品?
<ObjectDataProvider x:Key="ItemSource" d:IsDataSource="True"/>
<ItemsPanelTemplate x:Key="ItemsPanelTemplate1">
<StackPanel IsItemsHost="True"/>
</ItemsPanelTemplate>
<DataTemplate x:Key="ItemCollectionTemplate">
<StackPanel>
<custom:Item x:Name="item" Car="{Binding Path=.,Mode=OneWay}" />
</StackPanel>
</DataTemplate>
If I have a list of Cars bound to a ListBox
.
I now want to implement that the first item is initially focused, additionally I want to implement a full keyboard navigation between the displayed ListBox-items, therefore I need access to the virtually created item controls.
The problem is that itemStack.Items[i]
returns the Car
itself and not the CarEditControl
. How can I get the virtually created item?
<ObjectDataProvider x:Key="ItemSource" d:IsDataSource="True"/>
<ItemsPanelTemplate x:Key="ItemsPanelTemplate1">
<StackPanel IsItemsHost="True"/>
</ItemsPanelTemplate>
<DataTemplate x:Key="ItemCollectionTemplate">
<StackPanel>
<custom:Item x:Name="item" Car="{Binding Path=.,Mode=OneWay}" />
</StackPanel>
</DataTemplate>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论