WPF DataGrid中的自定义CheckBox不会更新绑定

时间:2010-05-28 03:45:53

标签: c# wpf datagrid binding

我有以下(简化)风格:

<Style x:Key="MyStyle" TargetType="{x:Type CheckBox}">  
    <Setter Property="Background" Value="Blue" />  
</Style>

如果我在DataGridCheckBoxColumn中将它用作ElementStyle AND EditingElementStyle:

<DataGridCheckBoxColumn Binding="{Binding IsEnabled}"  
                        ElementStyle="{StaticResource MyStyle}"  
                        EditingElementStyle="{StaticResource MyStyle}" />

然后,当我选中/取消选中行的复选框时,我的绑定IsEnabled不会切换。如果我删除ElementStyle,EditingElementStyle或两者,那么绑定更新没有问题。这是为什么?!

此外,我尝试使用以下代码解决此问题:

<DataGridTemplateColumn>
    <DataGridTemplateColumn.CellTemplate>
        <DataTemplate>
            <CheckBox IsChecked="{Binding IsEnabled}"/>
        </DataTemplate>
    </DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>

然而,问题仍然存在。

2 个答案:

答案 0 :(得分:12)

对不起,我觉得我在Stack Overflow上找到了一个更好的解决方案,可以帮助人们在这个页面上搜索解决方案。

https://stackoverflow.com/a/7270548/3082531

<DataGridTemplateColumn.CellTemplate>
    <DataTemplate>
        <CheckBox IsChecked="{Binding Path=IsSelected, UpdateSourceTrigger=PropertyChanged}" />
    </DataTemplate>
</DataGridTemplateColumn.CellTemplate>

我尝试了这个,它对我来说非常合适,比公认的解决方案更简单,也无需额外点击复选框。

答案 1 :(得分:11)

首先你断言如果你删除ElementStyleEditingElementStyle解决问题是不正确的,那么你的问题就是ElementStyle

问题是,为了进行编辑,数据网格必须切换到编辑模板,但是,通常在鼠标单击时进行,因为CheckBox处理鼠标单击事件,数据网格永远不会得到它,永远不会进入编辑模式,防止您的更改到达您的数据对象(它保留在数据视图中但不会传递给源数据)。

现在您可能会问,默认行为怎么样?好吧,如果你查看ElementStyle属性的默认值,你会注意到它将IsHitTestVisibleFocusable都设置为false。这可以防止CheckBox处理更改其状态的鼠标单击(或键盘事件),并允许数据网格接收它们,从而更改进入编辑模式并切换到EditingElementStyle这不会影响可聚焦性和可测性。

查看此博客条目,了解如何正确执行此操作的示例When is a WPF DataGrid read-only CheckBox not read-only?