I have datagridview and need to update it on separate thread. Or maybe even on same thread but only when data ready. I have 90% of data loading right away and would like to show it to user. Then I have 2 more columns that can load 20+ seconds sometimes and would like to update them as soon as data ready. What is the best way to accomplish this?
Share
In WinForms, your best bet is BackgroundWorker, it’s a nice class for doing work on a different thread and updating a WinForms based UI.