.NET2 中的数据绑定反馈
我在 Form1 中有一个带有 textBox1 的对象 myObject.Name 在 Form1_Load 中,我执行以下操作:
this.TextBox1.DataBindings.Add("Text", myObject, "Name");
验证文本框时,我更改了 myObject.Name。这是确定。
现在我在myObject内部修改_name =“changed value”
,但是myTextBox文本不会改变。那么...如何在两个方向上执行此操作,从和到 textBox1?
I have a object myObject.Name in a Form1 with a textBox1
In the Form1_Load I do:
this.TextBox1.DataBindings.Add("Text", myObject, "Name");
When validating the textBox I have myObject.Name changed. This is OK.
Now I modify internally in myObject _name = "changed value"
, but myTextBox text will not change. so... how to do it on both directions, from and to the textBox1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的对象需要实现 INotifyPropertyChanged 以便数据绑定知道您的对象发生了变化。
Your object needs to implement INotifyPropertyChanged so that the data binding knows that your object changed.