数据绑定:让数据反映通过代码修改的控件值的变化

发布于 2024-11-08 17:18:17 字数 181 浏览 0 评论 0原文

我在控件和 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 技术交流群。

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

发布评论

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

评论(1

惜醉颜 2024-11-15 17:18:17

binding.BindingManagerBase.EndCurrentEdit();

绑定是:

Binding binding = new Binding("Text", datasourceObject, property);
control.DataBindings.Add(binding);

binding.BindingManagerBase.EndCurrentEdit(); ?

the binding is:

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