How do you use data binding in C# development ?
- by MemoryLeak
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 ?