I have a basic property that stores an object of type Fruit:
Fruit food; public Fruit Food { get {return this.food;} set { this.food= val
We can use following code
textBox1.DataBindings.Add("Text", model, "Name", false, DataSourceUpdateMode.OnPropertyChanged);
Where
"Text"
model
"Name"