Each control has a property DataBindings which is a list of System.Windows.Forms.Binding objects. The Add()-method has some overloads which enables you easily binding to the property of an object:
textBox.DataBindings.Add( "Text", dataObj, "MyProperty" );
Note, that binding b...