XAML:在 DataTemplate 内的 ListView 内与 DataTemplate 绑定惨败
您好,我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您会想要使用:
这绑定到 ListView 数据上下文上的可用属性集合。
I believe you would want to use:
This binds to the AvailablePropertiesCollection on the ListView's data context.