I have a simple app which fires of a series of data intensive tasks. I'm not very experienced with WinForms and I was wondering the best way to do this without locking the interface. Can backgroundWorker be re-used, or is there another way to do this?
Thanks
backgroundWorker can be used.
backgroundWorker
its benefit - it allows you to update a progress bar and interact with UI controls. (WorkerReportsProgress)
WorkerReportsProgress
Also it has a cancellation mechanism. (WorkerSupportsCancellation)
WorkerSupportsCancellation
1.4m articles
1.4m replys
5 comments
57.0k users