我的 ItemsSource 语法正常吗?
我有以下 XAML。 假设 FruitList 是 Fruits 的集合,每个 Fruits 都有一个 FruitSeed 的集合。 是否有语法将 cbxFruitSeeds 绑定到 FruitSeeds 集合,具体取决于 cbxFruits 中选择的 Fruit?
<GridView>
<GridViewColumn Header="Fruits">
<GridViewColumn.CellTemplate>
<DataTemplate>
<ComboBox DisplayMemberPath="Fruit.Name" ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ItemsControl}}, Path=DataContext.FruitList}" x:Name="cbxFruits"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Header="FruitSeeds">
<GridViewColumn.CellTemplate>
<DataTemplate>
<ComboBox x:Name="cbxFruitSeeds"></ComboBox>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
I have the following XAML. Let's say FruitList is a collection of Fruits, each of which has a collection of FruitSeeds. Is there a syntax to bind cbxFruitSeeds to a collection of FruitSeeds, depending on which Fruit is selected in cbxFruits?
<GridView>
<GridViewColumn Header="Fruits">
<GridViewColumn.CellTemplate>
<DataTemplate>
<ComboBox DisplayMemberPath="Fruit.Name" ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ItemsControl}}, Path=DataContext.FruitList}" x:Name="cbxFruits"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Header="FruitSeeds">
<GridViewColumn.CellTemplate>
<DataTemplate>
<ComboBox x:Name="cbxFruitSeeds"></ComboBox>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来您正在尝试做一个级联组合框。
真的没有吗如何在 xaml 绑定中跟踪数据集父关系? 展示了如何在 xaml 中进行父子设置。
It looks like you're trying to do a cascading combobox.
Is there really no way to follow up dataset parent relation in xaml binding? shows how to do a parent-child set up in xaml.
有两种方法可以正确地做到这一点。
第一个是更好的选择,因为您不需要将水果类型存储在保存用户选择的数据中。 第一个组合框由配置或元数据填充。
Two ways to do this the right way.
The first is preferable because you don't need to store the fruit type in the data that saves the user's choice. The first combobox is populated by a config, or metadata.