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?