I have successfully bound my DataGridView to a list. But the grid does not update when I programmatically change some properties of one of the objects in the list. If I click on a cell (or hide and then enlarge the shape), the displayed value will be updated.
I read here that I should use a BindingList. The list I'm using is an interface type that does not implement an IBindingList. But the specific type used to initialize the list inherits a BindingList. Any ideas?
c # winforms binding datagridview
bsh152s
source share