WPF multiple backgroundworkers completed
I have 4 backgroundworkers running on my WPF application. I need to perform an action when all of them have开发者_StackOverflow社区 completed. How can I coordinate their completion?
The easiest way will be tracking each of those completion in a static variable as increment of count or something. If your case is more complex, please give further details.
精彩评论