How to implement data binding for a Windows user control?

Basically, I'm confused about how to implement data binding on the control side.

I am trying to write my own list control in C # that implements data binding. I want this to lead to similar functionality in ListView, but with an interface similar to ListBox.
I have a private nested class called "ListRow" that handles the rendering of each row. There is an internal binding source that receives changes from the data and forces the control to invalidate if necessary. The problem is that I want to add a checkbox to the ListRow, and I'm not sure what the best way to implement it is to change the property of the main object.

+6
c # data-binding winforms
source share
1 answer
+4
source share

All Articles