Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可编辑的发票网格和一些复选框列,如发票,发送给客户/确定发票。我有这些布尔字段更新/更新的字段。
如果复选框值已更改,我想更新这两列。我不确定我该怎么做。有什么帮助吗?
在页面的屏幕设计器中,从表示复选框的查询(左侧)中选择属性。然后单击“编写代码”链接旁边的下拉菜单并实现 xxx_Changed 的方法。
然后,您可以在此处根据此输入设置其他字段的值。
我这样做的方法是为 DataGrid的SelectedItem属性实现INotifyPropertyChanged接口。非常适合“如果复选框值已更改,我想更新这两列”。
如果您需要代码,请告诉我。