XAML:在 DataTemplate 内的 ListView 内与 DataTemplate 绑定惨败

发布于 2024-11-04 09:20:59 字数 817 浏览 0 评论 0原文

您好,我有一个 ViewModel 的数据模板。

在此 DataTemplate 中,我有一个绑定到模板集合的 ListView,并且在其中我无法设置集合中项目的属性。

该属性的可用设置位于原始 ViewModel 的另一个集合中,但我很难绑定到它。

<DataTemplate DataType="{x:Type ViewModel}">

    <!-- Some irrelevant property bindings -->

    <ListView ItemsSource="{Binding Path=TheCollection}">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <ComboBox ItemsSource="{Binding RelativeSource={RelativeSource SOMEAPPROPRIATERELATIVESOURCE}, 
                                           Path=AvailablePropertiesCollection}"  SelectedItem="{Binding Path=TheProperty}" />
                </DataTemplate>
            </ListView.ItemTemplate>
    </ListView>

有没有一些好的方法可以绑定到顶级 DataTemplate 的项目?

Hi I got a dataTemplate for a ViewModel.

Within this DataTemplate I got a ListView bound to a collection of the template and there In I wan't to be able to set a property of the items in the collection.

The available settings of the property is in another collection in the original ViewModel but I'm having a hard time binding to it.

<DataTemplate DataType="{x:Type ViewModel}">

    <!-- Some irrelevant property bindings -->

    <ListView ItemsSource="{Binding Path=TheCollection}">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <ComboBox ItemsSource="{Binding RelativeSource={RelativeSource SOMEAPPROPRIATERELATIVESOURCE}, 
                                           Path=AvailablePropertiesCollection}"  SelectedItem="{Binding Path=TheProperty}" />
                </DataTemplate>
            </ListView.ItemTemplate>
    </ListView>

Is there some good way to get the binding to the item of the top level DataTemplate?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺渁∝ 2024-11-11 09:21:05

我相信您会想要使用:

ItemsSource="{Binding RelativeSource={RelativeSource AncestorType={x:Type ListView}}, 
    Path=DataContext.AvailablePropertiesCollection}"

这绑定到 ListView 数据上下文上的可用属性集合。

I believe you would want to use:

ItemsSource="{Binding RelativeSource={RelativeSource AncestorType={x:Type ListView}}, 
    Path=DataContext.AvailablePropertiesCollection}"

This binds to the AvailablePropertiesCollection on the ListView's data context.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文