Folks,

I’m doing my first project with WinForms, and I’m trying to get the DataBinding working. There’s no database in my project, but I’d like to bind some of the TextBoxes to runtime object properties. On the web I found the following line of code which “does it”:

Code:
textBox2.DataBindings.Add(new Binding("Text", this.myPerson, "LastName"));
This is a viable approach for me. However, my question is – can data binding to runtime object properties be done during design time (without writing code) ? If so, how?

Any suggestions references and insight is appreciated!

Cheers,
- Nick