WPF datagrid - 值更改后立即提交复选框列中的更改
我对数据网格有一个小问题。
在我的网格中,我有一个复选框列,这是唯一可编辑的列。
我正在寻找的行为是数据网格在复选框状态发生变化后立即更新我的数据源。因此,用户选中/取消选中该框 >底层数据表被更新。
当行失去焦点时,默认行为似乎会更新源,要求用户按键或单击其他控件来保存更改。
我怎样才能改变这种行为?
我没有看到任何可以执行此操作的数据网格属性,也没有看到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要列绑定上的
UpdateSourceTrigger
属性。这是一个简单的例子,您可以充实它并填补空白: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 本身将所有列(模板列除外)的 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.