我将WPF组合框绑定到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}" />
和DataGrid绑定到ObservableCollection ItemTypeList,ItemType有一个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);
在我可能使用的列表中是否没有查找方法?
答案 0 :(得分:2)
使用SelectedItem
上的绑定代替SelectedIndex
。