Windows Forms Threading Techniques
It seems that there are any number of ways to do multi-threading in Windows Forms. Here are some of the interesting techniques:
- Give Your .NET-based Application a Fast and Responsive UI with Multiple Threads, Ian Griffiths
- A number of Ted Pattison’s Basic Instincts column pieces cover threading
- Safe, Simple Multithreading in Windows Forms 1.x (part 1, part 2 and part 3), Chris Sells
- Safe, Even Simpler Multithreading in Windows Forms 2.0, Mike Weinhardt
- Asynchronous Windows Forms Programming, Juval Lwy (provides a BackgroundWorker component for Windows Forms 1.x)
- Making windows forms thread safe, Rüdiger Klaehn (generates a proxy class to do synchronization)
- The Daemon Inside and When to go async?, Matthew Adams