How do you use data binding in C# development ?
Posted
by MemoryLeak
on Stack Overflow
See other posts from Stack Overflow
or by MemoryLeak
Published on 2010-03-16T12:34:20Z
Indexed on
2010/03/16
12:36 UTC
Read the original article
Hit count: 275
Recently I use data binding to speed up my development of C# winforms application. But I found that data binding is just useful when the control is Textbox or textare and text kind of controls. If things come to be radio button, image control or datagridview, it's hard for me to use data binding. For example, it's hard for me to bind a group of radio button to a database field. It's hard for me to pre-process the data in database and then bind to datagridview control(I know I can use view to do this, but it is not that convenient)
So I really want to know, most of you guys when will use data binding? And how will you use it ?
© Stack Overflow or respective owner