数据绑定:让数据反映通过代码修改的控件值的变化
我在控件和 DataView 之间进行数据绑定。所有数据绑定都有效,除了当我通过代码更新控件的数据绑定字段的值时。该值不会反映在 DataView 中。如果我单击控件的字段,这就会反映在数据中。有什么建议吗?在绑定管理器上调用更新会导致控件反映数据中的内容。但我需要某种方法使数据向控件请求最新值。
如果我能澄清的话请告诉我。谢谢。
I have databinding between a control and a DataView. All the databinding works, except for when I update the value of the control's databound field via code. This value does not get reflected in the DataView. If I click into the control's field this then becomes reflected in the data. Any suggestions? Calling update on the binding manager causes the control to then reflect what is in the data. But I need some way of causing the data to ask for the newest values from the controls.
Let me know if I can clarify. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
binding.BindingManagerBase.EndCurrentEdit();
?绑定是:
binding.BindingManagerBase.EndCurrentEdit();
?the binding is: