我有WPF组合框绑定(bind)到ObservableCollection ItemCategoryList
<ComboBox Grid.Column="1" Grid.Row="2" Height="Auto" HorizontalAlignment="Stretch" Margin="0" Name="comboBox1" VerticalAlignment="Stretch" Width="Auto" ItemsSource="{Binding Path= ItemCategoryList}" DisplayMemberPath="Name" SelectedItem="{Binding Path=SelectedItemCategory,UpdateSourceTrigger=PropertyChanged}" SelectedIndex="{Binding Path=SelectIndexItemCategory}" />
和绑定(bind)到ObservableCollection ItemTypeList和ItemType的DataGrid具有类型为ItemCategory的嵌套对象ItemCategory
<DataGrid AutoGenerateColumns="False" Grid.ColumnSpan="3" Grid.Row="3" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="Auto" Margin="10"
ItemsSource="{Binding ItemTypeList}"
SelectedItem="{Binding SelectedItemType}"
CanUserDeleteRows="False"
CanUserAddRows="False">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding Path=ItemTypeID}" Header="ItemTypeID" IsReadOnly="True" Visibility="Hidden" />
<DataGridTextColumn Binding="{Binding Path=Name}" Header="Item Type Name" IsReadOnly="True" />
<DataGridTextColumn Binding="{Binding Path=ItemCategory.Name}" Header="Item Category" IsReadOnly="True" />
</DataGrid.Columns>
</DataGrid>
现在,当我在数据网格中选择一行时,我希望组合框选择该ItemType的相应ItemCategory
private ItemType selectedItemType;
public ItemType SelectedItemType
{
get { return selectedItemType; }
set {
selectedItemType = value;
RaisePropertyChanged("SelectedItemType");
if (selectedItemType != null)
{
ItemTypeName = selectedItemType.Name;
SelectIndexItemCategory = ItemCategoryList.IndexOf(SelectedItemCategory);
}
}
}
private int selectIndexItemCategory;
public int SelectIndexItemCategory
{
get { return selectIndexItemCategory; }
set { selectIndexItemCategory = value;
RaisePropertyChanged("SelectIndexItemCategory");
}
}
编辑:
问题似乎在这里:
SelectIndexItemCategory = ItemCategoryList.IndexOf(SelectedItemCategory);
像我可以使用的列表中那样,在Collection中没有找到方法?
最佳答案
对SelectedItem
而不是SelectedIndex
使用绑定(bind)。
关于c# - 在MVVM框架的组合框中选择一个项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6881984/