vote up 2 vote down star

I've built some business objects, and I've built a "data access layer" that will read, update, delete, etc. Now I want to bind these objects to grids/text boxes/combo's etc in a WinForm's app.

I could do the manual method like:

txtName.Text = employee.Name;

and then on save do something like

employee.Name = txtName.Text;

But I'd much rather use the "RAD" features of VS 2008. I've done some googling but I'm not finding any quick tutorial that shows me what I need to do to my business objects to allow them to be "data bound". Can anyone help?

flag

4 Answers

vote up 1 vote down check

Also have a look at
Windows Forms Object Data Binding in .NET 2.0

link|flag
vote up 1 vote down

I think the article Create a Custom DataSource Quickly & Easily with C# 2.0 Iterators will help you do what you want.

link text

link|flag
vote up 0 vote down

Maybe you should get this book: ADO.NET 2.0 Step-By-Step

link|flag
vote up 1 vote down

Here is a nice tutorial on WinForms data binding:

Data Binding in .NET / C# Windows Forms

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.