I have a pet project that I\'m working on that has multiple worker threads. Outputting everything to the console is getting hard to follow, so I want to develop a UI that wi
You can have your worker threads raise events and have the main UI thread add event handlers. You need to be careful you're not raising too many events as it could get ugly if your worker threads are raising multiple events per second.