我有一个DataGrid,它的两个列是ComboBoxes(一个包含很少但不是这个问题)。
我想,当用户更改第一个Combo的值时,另一列中的ComboBox应绑定到其属性(此属性是一个集合)。假设第一个ComboBox是Category,我希望当用户更改其值时,另一个CB将填充(第一个组合的所选类别)。值的值。
我该怎么做,我不使用MVVM,只是简单的WPF。 我不知道应该以什么方式实施它,我希望我做得对。
我认为,如果我可以从第一个SelectionChangeHandler获得另一个ComboBox(位于不同的DataGridCell中),那将是最好的,因为那时我可以在第一个选择更改的每个选择更改时重置其源。 请注意,我有能力到达当前(第一个)DataGridCell,我只是在寻找一种有效的方法来访问正确的DataGridCell兄弟,然后得到它的子(第二)组合。
另请注意,所选类别应因行而异,第二个ComboBox应取决于此行的类别。
我实际上试图实现它,以便CollectionViewSource.Source绑定到当前项(即行的DataContext)但它似乎不起作用。
我更喜欢在第一个ComboBox的SelectionChange中通过Action触发器或处理程序设置第二个组合的CollectionViewSource(VendorsCollection)。
该字段中的其他ComboBox似乎没有出现问题,因为它们彼此绑定,我可能会使用CollectionViewSource.Filter,无论如何访问它们都不是问题,因为它们是简单的兄弟姐妹,不喜欢第一个是位于另一个DataGridCell深处的远房表亲。
以下是我到目前为止尝试的内容:
<DataGrid>
<DataGrid.Resources>
<CollectionViewSource x:Key="CategoriesCollection" Source="{Binding Context.CategoriesList, Source={x:Static Application.Current}, IsAsync=True}" />
</DataGrid.Resources>
<DataGrid.Columns>
<DataGridTemplateColumn Header="Category">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock DataContext="{Binding Category}" Text="{Binding Title}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<!--This is the first ComboBox-->
<ComboBox
IsSynchronizedWithCurrentItem="False"
ItemsSource="{Binding Source={StaticResource CategoriesCollection}}"
DisplayMemberPath="Title"
SelectionChanged="cbCategories_SelectionChanged"
SelectedItem="{Binding Category}"/>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
<DataGridTemplateColumn Header="Style">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel>
<TextBlock DataContext="{Binding Finish.Style.Vendor}" Text="{Binding Contact.Title}"/>
<TextBlock DataContext="{Binding Finish.Style}" Text="{Binding Title}"/>
<TextBlock Text="{Binding Finish.Title}"/>
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<StackPanel>
<StackPanel.Resources>
<!--I want, that when the user selects a value in the first ComboBox,
the VendorsCollection below should be populated with the selected Category.Vendors,
or alternatively current row's data item.Category.Vendors,
I just donno how to access current row from these resources.-->
<CollectionViewSource x:Key="VendorsCollection" Source="{Binding Vendors, Source={StaticResource CategoriesCollection}}" />
<CollectionViewSource x:Key="StylesCollection" Source="{Binding Styles, Source={StaticResource VendorsCollection}}" />
<CollectionViewSource x:Key="FinishesCollection" Source="{Binding Finishes, Source={StaticResource StylesCollection}}" />
</StackPanel.Resources>
<ComboBox
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding Source={StaticResource VendorsCollection}}"
SelectedItem="{Binding Finish.Style.Vendor}"
DisplayMemberPath="Contact.Title"/>
<ComboBox
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding Source={StaticResource StylesCollection}}"
SelectedItem="{Binding Finish.Style}"
DisplayMemberPath="Title"/>
<ComboBox
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding Source={StaticResource FinishesCollection}}"
SelectedItem="{Binding Finish}"
DisplayMemberPath="Title"/>
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>