I have a dataGrid bound to a List object and this works fine by calling…
dgList.DataSource = carList;
However I have code that updates the carList on background threads by polling servers and also deletes based on age. The datagrid does not seem to update at all, I tried calling .Update() and that has no effect.
Is this possible?
The list is defined as
List<Car> = carList = new List<Car>();
Refreshwon’t work because it only redraws the control:The simplest solution is likely to rebind using
DataSourceagain: