WPF DataGridTemplateColumn组合框更新所有行

时间:2014-04-25 10:49:35

标签: c# wpf xaml combobox datagridtemplatecolumn

我有这个XAML,它从组合框中选择ItemSource为Enum的值。我使用的教程是:

http://www.c-sharpcorner.com/uploadfile/dpatra/combobox-in-datagrid-in-wpf/

            <DataGrid x:Name="dgProductItem" 
                   ItemsSource="{Binding ProductVersion.ProductItems}"

            <DataGridTemplateColumn Header="Deployment Type" Width="120">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding DeploymentType}"></TextBlock>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
                <DataGridTemplateColumn.CellEditingTemplate>
                    <DataTemplate>
                        <ComboBox ItemsSource="{Binding Source={StaticResource DeploymentTypeEnum}}"
                                  SelectedItem="{Binding DeploymentType}">

                        </ComboBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellEditingTemplate>

但是,当我从一行更改值时,会更新所有行。有谁知道这是为什么?

编辑:

如果我只更改一行,它只会更新该行,但当我更改另一行时,我刚刚更改的那行也将更改前一行..

干杯

1 个答案:

答案 0 :(得分:4)

重复的Aplogises但经过几个小时的猜测,因为网上没有足够的材料来解决这个问题,解决方案是

                </DataGridTemplateColumn.CellTemplate>
                <DataGridTemplateColumn.CellEditingTemplate>
                    <DataTemplate>
                        <ComboBox ItemsSource="{Binding Source={StaticResource DeploymentTypeEnum}}"
                                  SelectedItem="{Binding DeploymentType}"
                                  **IsSynchronizedWithCurrentItem="false**">
                        </ComboBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellEditingTemplate>

IsSynchronizedWithCurrentItem - 执行它在锡上所说的内容。但是,当您选择一个项目时,当前项目将消失,但至少它不会更新所有行。