如何获取数据绑定ListBox的虚拟Item?

发布于 2024-10-14 18:33:35 字数 677 浏览 5 评论 0原文

如果我有一个绑定到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文