I have a UI button that spawns a BackgroundWorker. This BackgroundWorker spawns several BackgroundWorkers that perform some operations. Is there a way to wait for all the inner BackgroundWorkers to complete in the main BackgroundWorker?
I have a UI button that spawns a BackgroundWorker. This BackgroundWorker spawns several BackgroundWorkers
Share
In your main worker code, you can check the IsBusy Property of the other workers
“Gets a value indicating whether the BackgroundWorker is running an asynchronous operation.”