WPF DataGrid中使用ComboBox时SelectItem不会实时更新到绑定数据
WPF中使用ComboBox,SelectedItem绑定到数据时,如果是在Window 里直接放置一个ComboBox,VM里创建数据List1绑定到ItemsSource, SelectItem1 绑定到SelectedItem,这时即便不指定Mode 和 UpdateDataTrigger,当选中项改变时,也会通知到SelectItem1。但是,如果将ComboBox放到DataGrid里面,再做同样的绑定,你会发现如果不指定SelectedItem的Mode和UpdateTrigger,数据是不会更新到SelectItem1的,加上Mode和UpdateTrigger,问题解决。
1,可以
<Window>
<Grid>
<ComboBox ItemsSource="{Binding List1}"
SelectedItem="{Binding SelectItem1}"/>
</Grid>
</Window>
2,不可以:
<DataGrid>
<DataGrid.Columns>
<DataGridTemplateColumn>
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ComboBox ItemsSource="{Binding List1}"
SelectedItem="{Binding SelectItem1}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
3、可以:
<DataGrid>
<DataGrid.Columns>
<DataGridTemplateColumn>
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ComboBox ItemsSource="{Binding List1}"
SelectedItem="{Binding SelectItem1,Mode=TwoWay,UpdateSoureTrigger=PropertyChanged}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>