WPF datagrid - 值更改后立即提交复选框列中的更改

发布于 2024-11-14 06:44:02 字数 268 浏览 2 评论 0原文

我对数据网格有一个小问题。

在我的网格中,我有一个复选框列,这是唯一可编辑的列。

我正在寻找的行为是数据网格在复选框状态发生变化后立即更新我的数据源。因此,用户选中/取消选中该框 >底层数据表被更新。

当行失去焦点时,默认行为似乎会更新源,要求用户按键或单击其他控件来保存更改。
我怎样才能改变这种行为?

我没有看到任何可以执行此操作的数据网格属性,也没有看到 DataGridCheckBoxColumn 的 CheckChanged 事件。

I have this tiny little issue with the datagrid.

In my grid I have a checkbox column which is the only editable column.

The behavior that I'm looking for is for the datagrid to update i's datasource as soon as the status of the checkbox changes. So user checks/unchecks the box > underlying datatable gets updated.

The default behavior seems to update the source when the row loses focus requiring the user to press a key or click on some other control to save the changes.
How can I change this behavior?

I don't see any property for the datagrid that could do this and no CheckChanged event for DataGridCheckBoxColumn.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半衾梦 2024-11-21 06:44:02

您需要列绑定上的 UpdateSourceTrigger 属性。这是一个简单的例子,您可以充实它并填补空白:

<DataGrid x:Name="someGrid">
    <DataGrid.Columns>
        <DataGridCheckBoxColumn Binding="{Binding SomeProperty, UpdateSourceTrigger=PropertyChanged}" />
    </DataGrid.Columns>
</DataGrid>

You need the UpdateSourceTrigger property on the binding of the column. Here is a quick example, you can flesh it out and fill in the blanks:

<DataGrid x:Name="someGrid">
    <DataGrid.Columns>
        <DataGridCheckBoxColumn Binding="{Binding SomeProperty, UpdateSourceTrigger=PropertyChanged}" />
    </DataGrid.Columns>
</DataGrid>
_蜘蛛 2024-11-21 06:44:02

DataGrid 本身将所有列(模板列除外)的 UpdateSourceTrigger 设置为 LostFocus,并且无法覆盖。因此需要将模板列与复选框模板一起使用。

编辑:这只是围绕 DataGrid 列的一长串愚蠢陷阱中的一个。概述了更多内容

The DataGrid itself sets the UpdateSourceTrigger for all columns (aside from template columns) to be LostFocus and this can't be overridden. Hence the need to use template columns with a checkbox template.

EDIT: This is just one in a long list of silly gotchas around DataGrid columns. More are outlined here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文